mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 09:50:15 +01:00
24 lines
558 B
TypeScript
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;
|