iltorb callback return type set to void

This commit is contained in:
Arturas Molcanovas
2017-11-19 00:40:30 +00:00
parent f26b4401fe
commit 63b3d353cd

View File

@@ -16,7 +16,7 @@ export interface BrotliEncodeParams {
size_hint?: number;
}
export type IltorbCallback = (err: Error | null | undefined, output: Buffer) => any;
export type IltorbCallback = (err: Error | null | undefined, output: Buffer) => void;
export function compress(buffer: Buffer, options: BrotliEncodeParams, callback: IltorbCallback): void;
export function compress(buffer: Buffer, callback: IltorbCallback): void;