mirror of
https://github.com/devonthesofa/obsidian-note-status.git
synced 2026-07-22 12:30:24 +00:00
9 lines
246 B
TypeScript
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[]>;
|