mirror of
https://github.com/nodejs/node.git
synced 2024-11-28 06:28:40 +01:00
41 lines
1.4 KiB
TypeScript
41 lines
1.4 KiB
TypeScript
|
import { TypedArray } from '../globals';
|
||
|
|
||
|
declare namespace InternalZlibBinding {
|
||
|
class ZlibBase {
|
||
|
// These attributes are not used by the C++ binding, but declared on JS side.
|
||
|
buffer?: TypedArray;
|
||
|
cb?: VoidFunction;
|
||
|
availOutBefore?: number;
|
||
|
availInBefore?: number;
|
||
|
inOff?: number;
|
||
|
flushFlag?: number;
|
||
|
|
||
|
reset(): void;
|
||
|
close(): void;
|
||
|
params(level: number, strategy: number): void;
|
||
|
write(flushFlag: number, input: TypedArray, inputOff: number, inputLen: number, out: TypedArray, outOff: number, outLen: number): void;
|
||
|
writeSync(flushFlag: number, input: TypedArray, inputOff: number, inputLen: number, out: TypedArray, outOff: number, outLen: number): void;
|
||
|
}
|
||
|
|
||
|
class Zlib extends ZlibBase{
|
||
|
constructor(mode: number)
|
||
|
init(windowBits: number, level: number, memLevel: number, strategy: number, writeState: Uint32Array, callback: VoidFunction, dictionary: Uint32Array): number;
|
||
|
}
|
||
|
|
||
|
class BrotliDecoder extends ZlibBase {
|
||
|
constructor(mode: number);
|
||
|
init(initParamsArray: Uint32Array, writeState: Uint32Array, callback: VoidFunction): boolean;
|
||
|
}
|
||
|
|
||
|
class BrotliEncoder extends ZlibBase {
|
||
|
constructor(mode: number);
|
||
|
init(initParamsArray: Uint32Array, writeState: Uint32Array, callback: VoidFunction): boolean;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export interface ZlibBinding {
|
||
|
BrotliDecoder: typeof InternalZlibBinding.BrotliDecoder;
|
||
|
BrotliEncoder: typeof InternalZlibBinding.BrotliEncoder;
|
||
|
Zlib: typeof InternalZlibBinding.Zlib;
|
||
|
}
|