mirror of
https://github.com/hydralauncher/hydra.git
synced 2026-01-18 08:43:57 +00:00
11 lines
196 B
TypeScript
11 lines
196 B
TypeScript
export interface Theme {
|
|
id: string;
|
|
name: string;
|
|
author: string | undefined;
|
|
authorName: string | undefined;
|
|
isActive: boolean;
|
|
code: string;
|
|
createdAt: Date;
|
|
updatedAt: Date;
|
|
}
|