mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 01:40:12 +01:00
10 lines
266 B
TypeScript
10 lines
266 B
TypeScript
const useWidgetCommunication = (): void => {};
|
|
|
|
export const isBalanceDisplayAllowed = async (): Promise<boolean> => {
|
|
return true;
|
|
};
|
|
|
|
export const setBalanceDisplayAllowed = async (_allowed: boolean): Promise<void> => {};
|
|
|
|
export default useWidgetCommunication;
|