Files
aaronai-web/types/index.ts
T

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