Files
hydra/src/types/theme.types.ts

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;
}