9 lines
256 B
TypeScript
9 lines
256 B
TypeScript
|
|
export const DICT_CODES = {
|
||
|
|
USER_STATE: 'state',
|
||
|
|
EVENT_TYPE: 'event_type',
|
||
|
|
LEDGER_DEVICE_TYPE: 'ledger_device_type',
|
||
|
|
LEDGER_DEVICE_MODEL: 'Ex-factory_Dev_Type'
|
||
|
|
} as const
|
||
|
|
|
||
|
|
export type DictCode = (typeof DICT_CODES)[keyof typeof DICT_CODES]
|