1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/frontend/src/component/splash/splash.tsx

8 lines
251 B
TypeScript

// All known splash IDs.
export const splashIds = ['environments', 'operators'] as const;
// Active splash IDs that may be shown to the user.
export const activeSplashIds: SplashId[] = ['operators'];
export type SplashId = typeof splashIds[number];