mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 01:40:12 +01:00
18 lines
352 B
TypeScript
18 lines
352 B
TypeScript
|
|
export const DeviceQuickActionsStorageKey = 'DeviceQuickActionsEnabled';
|
|
|
|
export const setEnabled = (): void => {};
|
|
|
|
export const getEnabled = async (): Promise<boolean> => {
|
|
return false;
|
|
};
|
|
|
|
const useDeviceQuickActions = () => {
|
|
|
|
const popInitialAction = (): void => {};
|
|
return { popInitialAction };
|
|
};
|
|
|
|
|
|
export default useDeviceQuickActions;
|