BlueWallet/class/quick-actions.windows.tsx
Marcos Rodriguez Velez cc78e6b1ff
REF
2023-11-11 13:19:34 -04:00

24 lines
558 B
TypeScript

import React from 'react';
export const DeviceQuickActionsStorageKey = 'DeviceQuickActionsEnabled';
interface DeviceQuickActionsFunctions {
setEnabled: () => void;
getEnabled: () => Promise<boolean>;
popInitialAction: () => void;
}
const DeviceQuickActions: React.FC & DeviceQuickActionsFunctions = () => {
return null;
};
DeviceQuickActions.setEnabled = (): void => {};
DeviceQuickActions.getEnabled = async (): Promise<boolean> => {
return false;
};
DeviceQuickActions.popInitialAction = (): void => {};
export default DeviceQuickActions;