@mdfriday/foundry
Version:
The core engine of MDFriday. Convert Markdown and shortcodes into fully themed static sites – Hugo-style, powered by TypeScript.
14 lines (13 loc) • 524 B
TypeScript
export declare const DEFAULT_THEMES_DIR = "themes";
export declare const DEFAULT_PUBLISH_DIR = "public";
export declare class Dir {
private readonly workingDir;
private readonly themesDir;
private readonly publishDir;
constructor(workingDir: string, themesDir: string, publishDir?: string);
getWorkingDir(): string;
getThemesDir(): string;
getThemesCacheDir(): string;
getPublishDir(): string;
}
export declare function newDir(workingDir: string, themesDir: string, publishDir: string): Dir;