UNPKG

ico-utils

Version:

A javascript library to create ICO file from PNG images and extract PNG images from ICO file.

8 lines (7 loc) 186 B
import { InputImage } from './types.js'; export declare function decodeIco(icoImage: InputImage): Promise<{ blob: Blob; width: number; height: number; bpp: number; }[]>;