mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-03-09 15:40:26 +00:00
10 lines
174 B
TypeScript
10 lines
174 B
TypeScript
export interface Theme {
|
|
id: string;
|
|
name: string;
|
|
author?: string;
|
|
authorName?: string;
|
|
isActive: boolean;
|
|
code: string;
|
|
createdAt: Date;
|
|
updatedAt: Date;
|
|
}
|