BlueWallet/class/quick-actions.windows.js

16 lines
318 B
JavaScript
Raw Normal View History

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