1.0.5 • Published 6 months ago

@types/base64-stream v1.0.5

Weekly downloads
1,681
License
MIT
Repository
github
Last release
6 months ago

Installation

npm install --save @types/base64-stream

Summary

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

Details

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

index.d.ts

// Type definitions for base64-stream 1.0
// Project: https://github.com/mazira/base64-stream
// Definitions by: Sean O'Brien <https://github.com/s73obrien>
//                 Erik Weatherwax <https://github.com/erikjwaxx>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <reference types="node" />

import { Transform, TransformOptions } from 'stream';
export class Base64Decode extends Transform {}
export class Base64Encode extends Transform {
    constructor(
        options?: TransformOptions & {
            outputEncoding?: string | null | undefined;
            inputEncoding?: string | undefined;
            lineLength?: number | undefined;
            prefix?: string | undefined;
        },
    );
}

Additional Details

  • Last updated: Wed, 30 Mar 2022 14:31:44 GMT
  • Dependencies: @types/node
  • Global values: none

Credits

These definitions were written by Sean O'Brien, and Erik Weatherwax.

1.0.5

6 months ago

1.0.4

7 months ago

1.0.3

8 months ago

1.0.2

2 years ago

1.0.1

3 years ago

1.0.0

4 years ago