mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 01:40:12 +01:00
13 lines
275 B
TypeScript
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;
|