mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-06-21 10:34:50 +02:00
11 lines
195 B
TypeScript
11 lines
195 B
TypeScript
export interface ContentFolder {
|
|
title: string;
|
|
path: string;
|
|
|
|
excludeSubdir?: boolean;
|
|
previewPath?: string;
|
|
filePrefix?: string;
|
|
contentTypes?: string[];
|
|
originalPath?: string;
|
|
}
|