Skip to main content
Module

std/node/zlib.ts

Deno standard library
Go to Latest
File
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.import { notImplemented } from "./_utils.ts";import { zlib as constants } from "./internal_binding/constants.ts";export class Options { constructor() { notImplemented(); }}export class BrotliOptions { constructor() { notImplemented(); }}export class BrotliCompress { constructor() { notImplemented(); }}export class BrotliDecompress { constructor() { notImplemented(); }}export class Deflate { constructor() { notImplemented(); }}export class DeflateRaw { constructor() { notImplemented(); }}export class Gunzip { constructor() { notImplemented(); }}export class Gzip { constructor() { notImplemented(); }}export class Inflate { constructor() { notImplemented(); }}export class InflateRaw { constructor() { notImplemented(); }}export class Unzip { constructor() { notImplemented(); }}export class ZlibBase { constructor() { notImplemented(); }}export { constants };export function createBrotliCompress() { notImplemented();}export function createBrotliDecompress() { notImplemented();}export function createDeflate() { notImplemented();}export function createDeflateRaw() { notImplemented();}export function createGunzip() { notImplemented();}export function createGzip() { notImplemented();}export function createInflate() { notImplemented();}export function createInflateRaw() { notImplemented();}export function createUnzip() { notImplemented();}export function brotliCompress() { notImplemented();}export function brotliCompressSync() { notImplemented();}export function brotliDecompress() { notImplemented();}export function brotliDecompressSync() { notImplemented();}export function deflate() { notImplemented();}export function deflateSync() { notImplemented();}export function deflateRaw() { notImplemented();}export function deflateRawSync() { notImplemented();}export function gunzip() { notImplemented();}export function gunzipSync() { notImplemented();}export function gzip() { notImplemented();}export function gzipSync() { notImplemented();}export function inflate() { notImplemented();}export function inflateSync() { notImplemented();}export function inflateRaw() { notImplemented();}export function inflateRawSync() { notImplemented();}export function unzip() { notImplemented();}export function unzipSync() { notImplemented();}export default { Options, BrotliOptions, BrotliCompress, BrotliDecompress, Deflate, DeflateRaw, Gunzip, Gzip, Inflate, InflateRaw, Unzip, ZlibBase, constants, createBrotliCompress, createBrotliDecompress, createDeflate, createDeflateRaw, createGunzip, createGzip, createInflate, createInflateRaw, createUnzip, brotliCompress, brotliCompressSync, brotliDecompress, brotliDecompressSync, deflate, deflateSync, deflateRaw, deflateRawSync, gunzip, gunzipSync, gzip, gzipSync, inflate, inflateSync, inflateRaw, inflateRawSync, unzip, unzipSync,};