Files
vscode-front-matter/src/pagesView/models/Settings.ts
T

15 lines
424 B
TypeScript

import { VersionInfo } from '../../models/VersionInfo';
import { ViewType } from '../state';
import { ContentFolder } from './../../models/ContentFolder';
export interface Settings {
wsFolder: string;
staticFolder: string;
folders: ContentFolder[];
initialized: boolean
tags: string[];
categories: string[];
openOnStart: boolean | null;
versionInfo: VersionInfo;
pageViewType: ViewType | undefined;
}