Add .gitignore Removed node_modules from previous commit Fix task modes Fix task modes Fix task modes Remove node_modules Update basic task modal Add notes functionality Improve UI Setup views Add scopes Fix projects layout Restructure Fix rest of the UI issues Cleanup old views Add .env to .gitignore
12 lines
245 B
TypeScript
12 lines
245 B
TypeScript
export interface Note {
|
|
id?: number;
|
|
title: string;
|
|
content: string;
|
|
created_at?: string;
|
|
updated_at?: string; // Make updated_at optional
|
|
tags?: { id: number; name: string }[];
|
|
project?: {
|
|
id: number;
|
|
name: string;
|
|
};
|
|
}
|