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

2.3.5 • Public • Published

Installation

npm install --save @types/md5

Summary

This package contains type definitions for md5 (https://github.com/pvorb/node-md5).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/md5.

index.d.ts

/**
 * Calculate the MD5 hash of a message.
 *
 * @param message - Message to hash.
 * @param options - Input and output options.
 * @returns MD5 hash.
 */
declare function md5(message: string | number[] | Uint8Array, options: md5.Options & { asBytes: true }): number[];
declare function md5(
    message: string | number[] | Uint8Array,
    options?: Pick<md5.Options, "asString" | "encoding">,
): string;
declare function md5(message: string | number[] | Uint8Array, options?: md5.Options): string | number[];

declare namespace md5 {
    interface Options {
        asBytes?: boolean | undefined;
        asString?: boolean | undefined;
        encoding?: "binary" | string | undefined;
    }
}

export = md5;

Additional Details

  • Last updated: Tue, 07 Nov 2023 09:09:39 GMT
  • Dependencies: none

Credits

These definitions were written by Bill Sourour, Cameron Crothers, Piotr Błażejewicz, and Ruslan Arkhipau.

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i @types/md5

      Weekly Downloads

      776,397

      Version

      2.3.5

      License

      MIT

      Unpacked Size

      4.55 kB

      Total Files

      5

      Last publish

      Collaborators

      • types