mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-03-28 17:42:40 +01:00
22 lines
435 B
TypeScript
22 lines
435 B
TypeScript
import { I18nConfig } from './i18nConfig';
|
|
|
|
export interface ContentFolder {
|
|
title: string;
|
|
path: string;
|
|
|
|
disableCreation?: boolean;
|
|
excludeSubdir?: boolean;
|
|
previewPath?: string;
|
|
filePrefix?: string;
|
|
contentTypes?: string[];
|
|
originalPath?: string;
|
|
$schema?: string;
|
|
extended?: boolean;
|
|
|
|
locale?: string;
|
|
localeTitle?: string;
|
|
localeSourcePath?: string;
|
|
defaultLocale?: string;
|
|
locales?: I18nConfig[];
|
|
}
|