UNPKG
ico-utils
Version:
latest (0.1.5)
0.1.5
0.1.4
0.1.2
A javascript library to create ICO file from PNG images and extract PNG images from ICO file.
ico-utils
/
dist
/
decodeIco.d.ts
8 lines
(7 loc)
•
186 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
InputImage
}
from
'./types.js'
;
export
declare
function
decodeIco
(
icoImage
:
InputImage
):
Promise
<{
blob
:
Blob
;
width
:
number
;
height
:
number
;
bpp
:
number
; }[]>;