init
This commit is contained in:
26
types.ts
Executable file
26
types.ts
Executable file
@@ -0,0 +1,26 @@
|
||||
|
||||
export interface Website {
|
||||
id: string;
|
||||
name: string;
|
||||
url: string;
|
||||
icon: string;
|
||||
categoryId: string;
|
||||
}
|
||||
|
||||
export interface Server {
|
||||
id: string;
|
||||
name: string;
|
||||
address: string;
|
||||
}
|
||||
|
||||
export interface Category {
|
||||
id: string;
|
||||
name: string;
|
||||
websites: Website[];
|
||||
}
|
||||
|
||||
export interface Wallpaper {
|
||||
name: string;
|
||||
url?: string;
|
||||
base64?: string;
|
||||
}
|
Reference in New Issue
Block a user