@mischback/buster
Version:
buster is a tool to support cache busting for static assets of a website.
7 lines (6 loc) • 305 B
TypeScript
import { BusterConfigMode } from "../configure";
import { BusterError } from "../errors";
export declare class BusterFileSystemError extends BusterError {
constructor(message: string);
}
export declare function createFile(source: string, destination: string, mode: BusterConfigMode): Promise<string>;