Files
vscode-front-matter/src/models/ContentFolder.ts
T
2023-02-10 13:24:59 +01:00

11 lines
195 B
TypeScript

export interface ContentFolder {
title: string;
path: string;
excludeSubdir?: boolean;
previewPath?: string;
filePrefix?: string;
contentTypes?: string[];
originalPath?: string;
}