mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-20 18:29:06 +00:00
16 lines
376 B
TypeScript
16 lines
376 B
TypeScript
// Copyright 2025 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
declare module 'better-blockmap' {
|
|
import { Writable } from 'node:stream';
|
|
|
|
type BlockMapOptions = {
|
|
detectZipBoundary?: boolean;
|
|
};
|
|
|
|
export class BlockMap extends Writable {
|
|
constructor(options?: BlockMapOptions);
|
|
compress(compression?: 'gzip' | 'deflate'): Buffer;
|
|
}
|
|
}
|