mirror of
https://github.com/hydralauncher/hydra.git
synced 2026-01-18 00:33:59 +00:00
13 lines
232 B
TypeScript
13 lines
232 B
TypeScript
export interface Theme {
|
|
id: string;
|
|
name: string;
|
|
author?: string;
|
|
authorName?: string;
|
|
isActive: boolean;
|
|
code: string;
|
|
hasCustomSound?: boolean;
|
|
originalSoundPath?: string;
|
|
createdAt: Date;
|
|
updatedAt: Date;
|
|
}
|