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) 281 B
import { Fs as IFs } from '../type'; import { Fs } from '../entity/fs'; import { Modules } from '../../module'; export interface Workspace { path: string; publish: string; osFs: IFs; } export declare function createFs(workspace: Workspace, mods: Modules): Promise<Fs>;