mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-05-18 15:25:43 +02:00
11 lines
186 B
TypeScript
11 lines
186 B
TypeScript
export interface DataFile {
|
|
id: string;
|
|
title: string;
|
|
file: string;
|
|
fileType: 'json' | 'yaml';
|
|
labelField: string;
|
|
schema?: any;
|
|
type?: string;
|
|
singleEntry?: boolean;
|
|
}
|