Files

12 lines
277 B
TypeScript
Raw Permalink Normal View History

2026-03-25 14:14:07 +01:00
/// <reference types="node" />
export interface PngToIcoOptions {
interpolation?: any;
}
declare function pngToIco(filepath: string | Buffer | any[], options?: PngToIcoOptions): Promise<Buffer>;
export function imagesToIco(images: any[]): Buffer;
export default pngToIco;