Files
aza/APP/nexus-remote/node_modules/png-to-ico/index.d.ts
2026-03-25 14:14:07 +01:00

12 lines
277 B
TypeScript

/// <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;