forked from iarv/vscode-front-matter
9 lines
219 B
TypeScript
9 lines
219 B
TypeScript
import { ContentFolder } from './../../models/ContentFolder';
|
|
|
|
export interface Settings {
|
|
folders: ContentFolder[];
|
|
initialized: boolean
|
|
tags: string[];
|
|
categories: string[];
|
|
openOnStart: boolean | null;
|
|
} |