UNPKG

@logic-pad/core

Version:
8 lines (7 loc) 288 B
import StreamCompressor from './streamCompressor.js'; export default class DeflateCompressor extends StreamCompressor { get id(): string; protected get algorithm(): CompressionFormat; compress(input: string): Promise<string>; decompress(input: string): Promise<string>; }