mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-05-05 13:02:27 +02:00
7 lines
120 B
TypeScript
7 lines
120 B
TypeScript
export interface DraftField {
|
|
name: string;
|
|
type: 'boolean' | 'choice';
|
|
choices?: string[];
|
|
invert?: boolean;
|
|
}
|