@types/deflate-js
TypeScript icon, indicating that this package has built-in type declarations

0.2.2 • Public • Published

Installation

npm install --save @types/deflate-js

Summary

This package contains type definitions for deflate-js (https://github.com/beatgammit/deflate-js).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/deflate-js.

index.d.ts

/**
 * Takes a byte sequence and deflates it
 *
 * @param data Uint8Array the raw, inflated payload
 * @param compression number the compression level (defined in RFC 1951, higher is better)
 *
 * @return Uint8Array the deflated bytes
 */
export function deflate(data: Uint8Array, compression?: number): Uint8Array;

/**
 * Takes a byte sequence and inflates it
 *
 * @param data Uint8Array the deflated payload
 *
 * @return Uint8Array the deflated bytes
 */
export function inflate(data: Uint8Array): Uint8Array;

Additional Details

  • Last updated: Mon, 06 Nov 2023 22:41:05 GMT
  • Dependencies: none

Credits

These definitions were written by Seb Renauld.

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i @types/deflate-js

      Weekly Downloads

      225

      Version

      0.2.2

      License

      MIT

      Unpacked Size

      3.57 kB

      Total Files

      5

      Last publish

      Collaborators

      • types