UNPKG

dokkie

Version:

Create good looking documentation from your Readme

10 lines (9 loc) 680 B
import { IFile, ISettings } from "../types"; export declare const asyncForEach: (array: any, callback: any) => Promise<void>; export declare const makeRoute: (file: IFile, settings: ISettings) => string; export declare const makePath: (file: IFile, settings: ISettings) => string; export declare const makeFileName: (file: IFile) => string; export declare const createFolder: (folder: string) => Promise<void>; export declare const writeThatFile: (file: IFile, contents: string, settings: ISettings, simple?: boolean) => Promise<void>; export declare const getPageTitle: (file: IFile) => string; export declare const download: (url: string, destination: string) => Promise<void>;