Organize/types/project.ts

11 lines
318 B
TypeScript

import type { ThemeName } from "@/lib/themes";
export interface ProjectDTO {
id: string;
title: string;
// The theme assigned to this project (see components/theme/). Null =
// "Default Theme": follow whatever the user picked in the global theme
// menu, like every other page.
theme: ThemeName | null;
}