BlueWallet/components/DeviceQuickActions.windows.tsx

22 lines
482 B
TypeScript
Raw Normal View History

2023-11-11 18:19:34 +01:00
import React from 'react';
export const DeviceQuickActionsStorageKey = 'DeviceQuickActionsEnabled';
interface DeviceQuickActionsFunctions {
popInitialAction: () => void;
}
2024-04-30 00:54:19 +02:00
export const setEnabled = (): void => {};
2023-11-11 18:19:34 +01:00
2024-04-30 00:54:19 +02:00
export const getEnabled = async (): Promise<boolean> => {
2023-11-11 18:19:34 +01:00
return false;
};
2024-04-30 00:54:19 +02:00
const DeviceQuickActions: React.FC & DeviceQuickActionsFunctions = () => {
return null;
};
2023-11-11 18:19:34 +01:00
DeviceQuickActions.popInitialAction = (): void => {};
export default DeviceQuickActions;