UNPKG

@mdfriday/foundry

Version:

The core engine of MDFriday. Convert Markdown and shortcodes into fully themed static sites – Hugo-style, powered by TypeScript.

10 lines (9 loc) 388 B
import { OriginFs } from '../entity/originfs'; import { FilesystemsCollector } from '@internal/domain/fs'; import { Modules } from '../../module'; export declare function createMainOverlayFs(ofs: OriginFs, mods: Modules): Promise<FilesystemsCollector>; export declare function createOriginFs(workspace: { path: string; publish: string; osFs: any; }, mods: Modules): OriginFs;