accounts-frontend/packages/app/components/dev/apps/index.ts
2020-05-21 21:52:58 +03:00

4 lines
188 B
TypeScript

export type ApplicationType = 'application' | 'minecraft-server';
export const TYPE_APPLICATION = 'application' as const;
export const TYPE_MINECRAFT_SERVER = 'minecraft-server' as const;