mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-02-04 07:52:51 +00:00
15 lines
513 B
TypeScript
15 lines
513 B
TypeScript
// Type definitions for base64-stream 1.0
|
|
// Project: https://github.com/mazira/base64-stream
|
|
// Definitions by: Sean O'Brien <https://github.com/s73obrien>
|
|
// 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 & {
|
|
lineLength?: number,
|
|
prefix?: string
|
|
});
|
|
}
|