UNPKG

@mdfriday/foundry

Version:

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

7 lines (6 loc) 212 B
import { Fs } from '@internal/domain/fs/type'; export interface SourceDescriptor { fs(): Fs; filename(): string; } export declare function newSourceDescriptor(fs: Fs, filename: string): SourceDescriptor;