Files
vscode-front-matter/src/models/DataFile.ts
T

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;
}