2.1.3 • Published 6 months ago

@types/base64-async v2.1.3

Weekly downloads
277
License
MIT
Repository
github
Last release
6 months ago

Installation

npm install --save @types/base64-async

Summary

This package contains type definitions for base64-async (https://github.com/lukechilds/base64-async).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/base64-async.

index.d.ts

// Type definitions for base64-async 2.1
// Project: https://github.com/lukechilds/base64-async
// Definitions by: BendingBender <https://github.com/BendingBender>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

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

export = base64Async;

declare function base64Async(input: Buffer, options?: base64Async.Options): Promise<string>;
declare function base64Async(input: string, options?: base64Async.Options): Promise<Buffer>;

declare namespace base64Async {
    function encode(input: Buffer, options?: Options): Promise<string>;
    function decode(input: string, options?: Options): Promise<Buffer>;

    interface Options {
        chunkSize?: number | undefined;
    }
}

Additional Details

  • Last updated: Wed, 07 Jul 2021 21:44:51 GMT
  • Dependencies: @types/node
  • Global values: none

Credits

These definitions were written by BendingBender.

2.1.2

7 months ago

2.1.3

6 months ago

2.1.1

3 years ago

2.1.0

5 years ago