@mdfriday/foundry
Version:
The core engine of MDFriday. Convert Markdown and shortcodes into fully themed static sites – Hugo-style, powered by TypeScript.
14 lines • 415 B
TypeScript
import { Fs as IFs } from '../type';
import { Fs } from '../entity/fs';
import { Modules } from '../../module';
export interface Workspace {
path: string;
publish: string;
osFs: IFs;
}
/**
* Create Fs entity following Go version structure
* TypeScript version of Go's New function
*/
export declare function createFs(workspace: Workspace, mods: Modules): Promise<Fs>;
//# sourceMappingURL=fs.d.ts.map