mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 09:50:15 +01:00
22 lines
482 B
TypeScript
22 lines
482 B
TypeScript
import React from 'react';
|
|
|
|
export const DeviceQuickActionsStorageKey = 'DeviceQuickActionsEnabled';
|
|
|
|
interface DeviceQuickActionsFunctions {
|
|
popInitialAction: () => void;
|
|
}
|
|
|
|
export const setEnabled = (): void => {};
|
|
|
|
export const getEnabled = async (): Promise<boolean> => {
|
|
return false;
|
|
};
|
|
|
|
const DeviceQuickActions: React.FC & DeviceQuickActionsFunctions = () => {
|
|
return null;
|
|
};
|
|
|
|
DeviceQuickActions.popInitialAction = (): void => {};
|
|
|
|
export default DeviceQuickActions;
|