UNPKG

@mora/tinypng

Version:

基于 tinypng 封装的一个支持 `nodejs`、`命令行`和`webpack`的图片压缩工具

11 lines (10 loc) 512 B
/// <reference types="node" /> export declare function hash(data: string | Buffer, algorithm?: string): string; export declare function getConfig(options?: any): any; export declare function isNetFile(file: string): boolean; export declare function isSvgFile(file: string): boolean; export declare function writeFileSync(filepath: string, buffer: Buffer | string): void; export declare function runProgressTasks(tasks: any[], callback: any, {indent, quiet}?: { indent?: string; quiet?: boolean; }): any;