BlueWallet/class/quick-actions.windows.js

16 lines
318 B
JavaScript
Raw Normal View History

2021-01-18 22:47:44 -05:00
function DeviceQuickActions() {
DeviceQuickActions.STORAGE_KEY = 'DeviceQuickActionsEnabled';
DeviceQuickActions.setEnabled = () => {};
DeviceQuickActions.getEnabled = async () => {
return false;
};
2021-05-15 12:48:00 -04:00
DeviceQuickActions.popInitialAction = () => {};
2021-01-18 22:47:44 -05:00
return null;
}
export default DeviceQuickActions;