0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-01-27 21:39:16 -05:00
logto/packages/console/src/consts/applications.ts
Gao Sun 1bc9568083
feat(console): send access token in requests (#386)
* feat(console): send access token in requests

* fix(console): upgrade SDK and fulfill resources

* fix(console): build
2022-03-16 07:34:03 +00:00

7 lines
290 B
TypeScript

import { ApplicationType } from '@logto/schemas';
export const applicationTypeI18nKey = Object.freeze({
[ApplicationType.Native]: 'applications.type.native',
[ApplicationType.SPA]: 'applications.type.spa',
[ApplicationType.Traditional]: 'applications.type.traditional',
} as const);