UNPKG

single-page-markdown-website

Version:

Create a nice single-page documentation website from one or more Markdown files

28 lines 623 B
export interface Options extends Config { outputDirectory: string; open: boolean; } export interface Config { baseUrl: null | string; description: null | string; faviconImage: null | string; links: Array<Link>; sections: boolean; shareImage: null | string; title: null | string; toc: boolean; version: null | string; } export interface Link { text: string; url: string; } export declare type MarkdownFile = { content: string; filePath: string; weight: number; }; export declare type Images = { [key: string]: string; }; //# sourceMappingURL=types.d.ts.map