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

9 lines
171 B
TypeScript

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