There was an error while loading. Please reload this page.
1 parent 907beed commit 0d17218Copy full SHA for 0d17218
1 file changed
source-code/types.ts
@@ -1,12 +1,15 @@
1
export interface ReleaseInfo {
2
version: string;
3
+ description: string;
4
editions: string;
5
news: string;
6
}
7
8
export enum AppSection {
9
RELEASES = 'releases',
10
WALLPAPERS = 'wallpapers',
11
+ GALLERY = 'gallery',
12
+ TEAM = 'team',
13
SETTINGS = 'settings'
14
15
@@ -17,7 +20,8 @@ export interface Wallpaper {
17
20
name: string;
18
21
19
22
-export type ThemeId = 'hacker' | 'cyberpunk' | 'ocean' | 'sunset';
23
+export type ThemeId = 'hacker' | 'cyberpunk' | 'ocean' | 'sunset' | 'matrix' | 'crimson' | 'royal';
24
+export type Language = 'pl' | 'en' | 'de' | 'es' | 'fr';
25
26
export interface Theme {
27
id: ThemeId;
0 commit comments