forked from kriszyp/msgpackr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunpack.d.ts
35 lines (35 loc) · 953 Bytes
/
unpack.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
export enum FLOAT32_OPTIONS {
NEVER = 0,
ALWAYS = 1,
DECIMAL_ROUND = 3,
DECIMAL_FIT = 4
}
interface Options {
useFloat32?: FLOAT32_OPTIONS
useRecords?: boolean
structures?: {}[]
structuredClone?: boolean
mapsAsObjects?: boolean
variableMapSize?: boolean
copyBuffers?: boolean
useTimestamp32?: boolean
largeBigIntToFloat?: boolean
getStructures?(): {}[]
saveStructures?(structures: {}[]): boolean | void
}
interface Extension {
Class: Function
type: number
pack(value: any): Buffer | Uint8Array
unpack(messagePack: Buffer | Uint8Array): any
}
export class Unpackr {
constructor(options?: Options)
unpack(messagePack: Buffer | Uint8Array): any
decode(messagePack: Buffer | Uint8Array): any
}
export class Decoder extends Unpackr {}
export function unpack(messagePack: Buffer | Uint8Array): any
export function decode(messagePack: Buffer | Uint8Array): any
export function addExtension(extension: Extension): void
export const C1: {}