9 lines
222 B
TypeScript
9 lines
222 B
TypeScript
export type Theme = 'light' | 'dark';
|
|
export type FontSize = 'small' | 'medium' | 'large';
|
|
export type DreamMode = 'nrem' | 'early-rem' | 'late-rem' | 'lucid';
|
|
|
|
export interface Project {
|
|
name: string;
|
|
path: string;
|
|
}
|