file-cms
Version:
File based Content Management System, easy to use with content stored in native file system
10 lines (9 loc) • 353 B
TypeScript
import { FilterProvider } from "./types";
export declare class Config {
private static rootDir;
private static filterProviders;
static setRootDir(rootDir: string): void;
static getRootDir(): string;
static setFilterProvider(name: string, provider: FilterProvider): void;
static getFilterProvider(name: string): FilterProvider;
}