@mdfriday/foundry
Version:
The core engine of MDFriday. Convert Markdown and shortcodes into fully themed static sites – Hugo-style, powered by TypeScript.
8 lines (7 loc) • 320 B
TypeScript
import { Modules } from '../entity/module';
import { Info } from '../type';
export declare function createModules(info: Info): Promise<Modules>;
export declare function createModulesWithProgress(info: Info, onProgress?: (progress: {
modulePath: string;
downloadPercentage: number;
}) => void): Promise<Modules>;