Files
Desktop/ts/growing-file.d.ts
T
2026-04-02 16:30:34 -07:00

17 lines
386 B
TypeScript

// Copyright 2025 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
declare module 'growing-file' {
type GrowingFileOptions = {
timeout?: number;
interval?: number;
};
// oxlint-disable-next-line typescript/no-extraneous-class
class GrowingFile {
static open(path: string, options: GrowingFileOptions): Readable;
}
export default GrowingFile;
}