blob: feaad39a45db58aa94bd9885aa53433a54665731 [file] [log] [blame]
import 'dart:typed_data';
import '../../util/input_stream.dart';
/// Decompress data with the zlib format decoder.
abstract class ZLibDecoderBase {
const ZLibDecoderBase();
Uint8List decodeBytes(Uint8List data, {bool verify = false});
Uint8List decodeStream(InputStream input, {bool verify = false});
}