mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-05-02 19:42:30 +02:00
11 lines
204 B
TypeScript
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';
|
|
}
|