mirror of
https://github.com/Unleash/unleash.git
synced 2025-09-15 17:50:48 +02:00
* chore: remove splash environment * Remove related images aswell Co-authored-by: sighphyre <liquidwicked64@gmail.com>
8 lines
224 B
TypeScript
8 lines
224 B
TypeScript
// All known splash IDs.
|
|
export const splashIds = ['operators'] as const;
|
|
|
|
// Active splash IDs that may be shown to the user.
|
|
export const activeSplashIds: SplashId[] = [];
|
|
|
|
export type SplashId = typeof splashIds[number];
|