UNPKG
bmp-ts
Version:
canary (1.0.4-canary.f6048cc)
latest (1.0.9)
1.0.9
1.0.8
1.0.7
1.0.6
1.0.5
1.0.4
1.0.4-canary.f6048cc
1.0.4-canary.c510de9
1.0.4-canary.af834ad
1.0.3
1.0.3-canary.4716b39
1.0.2
1.0.1
1.0.1-canary.fbd7a34
1.0.1-canary.ec95656
1.0.1-canary.e5995ce
1.0.1-canary.698cc0c
1.0.1-canary.00a50fd
1.0.0
1.0.0-canary.6547431
0.2.8
0.2.7
0.2.6
0.2.6-canary.c35951d
0.2.6-canary.36ca5a2
0.2.6-canary.0f3b032
0.2.6-canary.0017be3
A pure typescript BMP encoder and decoder
github.com/hipstersmoothie/bmp-ts
hipstersmoothie/bmp-ts
bmp-ts
/
dist
/
index.d.ts
9 lines
(8 loc)
•
286 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
/// <reference types="node" />
import
BmpDecoder
from
'./decoder'
;
import
BmpEncoder
from
'./encoder'
;
declare
const
_default
: {
decode
:
(
bmpData
:
Buffer
,
options
?:
IDecoderOptions
|
undefined
) =>
BmpDecoder
;
encode
:
(
imgData
:
IImage
) =>
BmpEncoder
; };
export
default
_default;