UNPKG

@mischback/buster

Version:

buster is a tool to support cache busting for static assets of a website.

8 lines (7 loc) 350 B
import { BusterConfig } from "./configure"; import { BusterError } from "./errors"; import { HashWalkerResult } from "./hashwalker/hashwalker"; export declare class BusterManifestError extends BusterError { constructor(message: string); } export declare function createManifestFile(result: HashWalkerResult, config: BusterConfig): Promise<void>;