1.0.3 • Published 7 months ago

@types/cipher-base v1.0.3

Weekly downloads
106,841
License
MIT
Repository
github
Last release
7 months ago

Installation

npm install --save @types/cipher-base

Summary

This package contains type definitions for cipher-base (https://github.com/crypto-browserify/cipher-base).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/cipher-base.

index.d.ts

// Type definitions for cipher-base 1.0
// Project: https://github.com/crypto-browserify/cipher-base
// Definitions by: DefinitelyTyped <https://github.com/DefinitelyTyped>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

/// <reference types="node" />

declare abstract class CipherBase {
    constructor(hashMode?: string);
    abstract final(): Buffer;
    abstract update(value: Buffer, inputEnc?: string, outputEnc?: string): Buffer;
}

export = CipherBase;

Additional Details

  • Last updated: Thu, 23 Dec 2021 23:34:24 GMT
  • Dependencies: @types/node
  • Global values: none

Credits

These definitions were written by DefinitelyTyped.