UNPKG

@logic-pad/core

Version:
7 lines (6 loc) 277 B
import CompressorBase from './compressorBase.js'; export default abstract class StreamCompressor extends CompressorBase { protected abstract get algorithm(): CompressionFormat; compress(input: string): Promise<string>; decompress(input: string): Promise<string>; }