Skip to content

Commit 0d17218

Browse files
authored
Update types.ts
1 parent 907beed commit 0d17218

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

source-code/types.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
export interface ReleaseInfo {
22
version: string;
3+
description: string;
34
editions: string;
45
news: string;
56
}
67

78
export enum AppSection {
89
RELEASES = 'releases',
910
WALLPAPERS = 'wallpapers',
11+
GALLERY = 'gallery',
12+
TEAM = 'team',
1013
SETTINGS = 'settings'
1114
}
1215

@@ -17,7 +20,8 @@ export interface Wallpaper {
1720
name: string;
1821
}
1922

20-
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';
2125

2226
export interface Theme {
2327
id: ThemeId;

0 commit comments

Comments
 (0)