UNPKG

html-build

Version:

Utility script to build HTML documents - Appends scripts and styles, removes debug parts, append HTML partials, template options, etc.

9 lines (8 loc) 382 B
import * as glob from "glob"; export declare type Dictionary<T = any> = { [key: string]: T; }; export declare function expand(pattern: string | string[], options?: glob.IOptions): string[]; export declare function isFile(src: string): boolean; export declare function readFile(src: string): string; export declare function writeFile(src: string, content: string): void;