mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-03-03 05:55:03 +01:00
21 lines
1.0 KiB
TypeScript
21 lines
1.0 KiB
TypeScript
export enum EventType {
|
|
ConnectPopupCall = 'connect-popup/call',
|
|
ConnectPopupError = 'connect-popup/error',
|
|
ConnectPopupInit = 'connect-popup/init',
|
|
ConnectPopupPermissions = 'connect-popup/permissions',
|
|
DeviceConnectionDeviceConfirmation = 'device-connection/device-confirmation',
|
|
DeviceConnectionDeviceFound = 'device-connection/device-found',
|
|
DeviceConnectionDevicePaired = 'device-connection/device-paired',
|
|
SettingsAppLogExported = 'settings/app-log/exported',
|
|
SettingsDeviceChangeLabel = 'settings/device/change-label',
|
|
SettingsDeviceWipe = 'settings/device/wipe',
|
|
SettingsGeneralLabeling = 'settings/general/labeling',
|
|
WalletConnectInit = 'wallet-connect/init',
|
|
WalletConnectPaired = 'wallet-connect/paired',
|
|
WalletConnectProposal = 'wallet-connect/proposal',
|
|
WalletConnectProposalApproved = 'wallet-connect/proposal-approved',
|
|
WalletConnectProposalRejected = 'wallet-connect/proposal-rejected',
|
|
WalletConnectSessionRequest = 'wallet-connect/session-request',
|
|
CoinDiscovery = 'coin_discovery',
|
|
}
|