@mdfriday/foundry
Version:
The core engine of MDFriday. Convert Markdown and shortcodes into fully themed static sites – Hugo-style, powered by TypeScript.
12 lines • 508 B
TypeScript
import { FileInfo } from "../../../domain/fs/vo/fileinfo";
/**
* Creates a new FileInfo instance with virtual file using filename
* TypeScript equivalent of Go's NewFileInfoWithName
*/
export declare function newFileInfoWithName(filename: string): FileInfo;
/**
* Creates a new FileInfo instance with virtual file using content
* TypeScript equivalent of Go's NewFileInfoWithContent
*/
export declare function newFileInfoWithContent(content: string): FileInfo;
//# sourceMappingURL=filevitural.d.ts.map