Files
vscode-front-matter/src/models/CustomTaxonomyData.ts
T

8 lines
181 B
TypeScript

export interface CustomTaxonomyData {
id: string | undefined;
name: string | undefined;
options?: string[] | undefined;
option?: string | undefined;
parents?: string[];
}