BlueWallet/class/quick-actions.windows.js

14 lines
267 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;
};
return null;
}
export default DeviceQuickActions;