UNPKG

mili

Version:

Scaffolding with continuous control over the development of the project.

24 lines (23 loc) 438 B
import { Exec } from "../../interface/loader"; interface MarkdownSectionLoaderOptions { /** * The resource key */ key: string; /** * The filepath */ filepath: string; /** * The file encoding * * @default 'utf8' */ encoding: string; /** * The findind sections */ sections: string; } export declare const exec: Exec<MarkdownSectionLoaderOptions>; export {};