mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-08-02 23:13:05 +02:00
15 lines
424 B
TypeScript
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;
|
|
} |