Socket
Socket
Sign inDemoInstall

@types/base64-stream

Package Overview
Dependencies
2
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @types/base64-stream

TypeScript definitions for base64-stream


Version published
Maintainers
1
Install size
3.81 MB
Created

Readme

Source

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

/// <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: Mon, 06 Nov 2023 22:41:04 GMT
  • Dependencies: @types/node

Credits

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

FAQs

Last updated on 06 Nov 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc