UNPKG

apitally

Version:

Simple API monitoring & analytics for REST APIs built with Express, Fastify, NestJS, AdonisJS, Hono, H3, Elysia, Hapi, and Koa.

19 lines (16 loc) 439 B
import { Buffer } from 'node:buffer'; declare class TempGzipFile { uuid: string; private filePath; private gzip; private writeStream; private readyPromise; private closedPromise; constructor(); get size(): number; writeLine(data: Buffer): Promise<void>; getContent(): Promise<Buffer<ArrayBufferLike>>; close(): Promise<void>; delete(): Promise<void>; } export { TempGzipFile as default };