mirror of
https://github.com/trezor/trezor-wallet
synced 2025-07-16 03:28:11 +00:00
14 lines
799 B
JavaScript
14 lines
799 B
JavaScript
export const ON_PASSPHRASE_CHANGE: string = 'action__on_passphrase_change';
|
|
export const ON_PASSPHRASE_SHOW: string = 'action__on_passphrase_show';
|
|
export const ON_PASSPHRASE_HIDE: string = 'action__on_passphrase_hide';
|
|
export const ON_PASSPHRASE_SAVE: string = 'action__on_passphrase_save';
|
|
export const ON_PASSPHRASE_FORGET: string = 'action__on_passphrase_forget';
|
|
export const ON_PASSPHRASE_FOCUS: string = 'action__on_passphrase_focus';
|
|
export const ON_PASSPHRASE_BLUR: string = 'action__on_passphrase_blur';
|
|
export const ON_PASSPHRASE_SUBMIT: string = 'action__on_passphrase_submit';
|
|
|
|
export const FORGET: string = 'modal__forget';
|
|
export const REMEMBER: string = 'modal__remember';
|
|
export const ON_FORGET: string = 'modal__on_forget';
|
|
export const ON_REMEMBER: string = 'modal__on_remember';
|