BlueWallet/hooks/useWidgetCommunication.ts
Marcos Rodriguez Velez 0197018fa1 wip
2024-11-08 21:07:35 -04:00

13 lines
275 B
TypeScript

export const useWidgetCommunication = (): void => {};
export const isBalanceDisplayAllowed = async (): Promise<boolean> => {
return true
};
export const setBalanceDisplayAllowed = async (_allowed: boolean): Promise<void> => {
};
export default useWidgetCommunication;