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

11 lines
204 B
TypeScript

export interface DataFolder {
id: string;
path: string;
labelField: string;
schema?: any;
type?: string;
singleEntry?: boolean;
enableFileCreation?: boolean;
fileType?: 'json' | 'yaml';
}