Files
vscode-front-matter/src/models/DraftField.ts

7 lines
120 B
TypeScript

export interface DraftField {
name: string;
type: 'boolean' | 'choice';
choices?: string[];
invert?: boolean;
}