devonthesofa_obsidian-note-.../types/noteStatus.ts
2025-07-15 17:30:17 +02:00

9 lines
246 B
TypeScript

export type NoteStatus = {
name: string;
icon: string;
color?: string; // Optional color property
description?: string; // Optional description property
[key: string]: unknown;
};
export type GroupedStatuses = Record<string, NoteStatus[]>;