Sha256: 79fd45a2c2cce00f4c051c9c91869cffc9b7f053ca76a2e413a38b593e1e408c

Contents?: true

Size: 1.56 KB

Versions: 26

Compression:

Stored size: 1.56 KB

Contents

# Installation
> `npm install --save @types/mute-stream`

# Summary
This package contains type definitions for mute-stream (https://github.com/isaacs/mute-stream#readme).

# Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/mute-stream.
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/mute-stream/index.d.ts)
````ts
/// <reference types="node" />

import { Duplex } from "stream";

declare namespace MuteStream {
    interface Options {
        /**
         * Set to a string to replace each character with the specified string when muted.
         * (So you can show **** instead of the password, for example.)
         */
        replace?: string | undefined;

        /**
         * If you are using a replacement char, and also using a prompt with a readline stream
         * (as for a Password: ***** input), then specify what the prompt is so that backspace
         * will work properly. Otherwise, pressing backspace will overwrite the prompt with the
         * replacement character, which is weird.
         */
        prompt?: string | undefined;
    }
}

declare class MuteStream extends Duplex {
    constructor(options?: MuteStream.Options);
    mute: () => void;
    unmute: () => void;
    isTTY: boolean;
}

export = MuteStream;

````

### Additional Details
 * Last updated: Tue, 07 Nov 2023 09:09:39 GMT
 * Dependencies: [@types/node](https://npmjs.com/package/@types/node)

# Credits
These definitions were written by [Adam Jarret](https://github.com/adamjarret).

Version data entries

26 entries across 26 versions & 1 rubygems

Version Path
clapton-0.0.26 lib/clapton/javascripts/node_modules/@types/mute-stream/README.md
clapton-0.0.25 lib/clapton/javascripts/node_modules/@types/mute-stream/README.md
clapton-0.0.24 lib/clapton/javascripts/node_modules/@types/mute-stream/README.md
clapton-0.0.23 lib/clapton/javascripts/node_modules/@types/mute-stream/README.md
clapton-0.0.22 lib/clapton/javascripts/node_modules/@types/mute-stream/README.md
clapton-0.0.21 lib/clapton/javascripts/node_modules/@types/mute-stream/README.md
clapton-0.0.20 lib/clapton/javascripts/node_modules/@types/mute-stream/README.md
clapton-0.0.19 lib/clapton/javascripts/node_modules/@types/mute-stream/README.md
clapton-0.0.18 lib/clapton/javascripts/node_modules/@types/mute-stream/README.md
clapton-0.0.17 lib/clapton/javascripts/node_modules/@types/mute-stream/README.md
clapton-0.0.16 lib/clapton/javascripts/node_modules/@types/mute-stream/README.md
clapton-0.0.15 lib/clapton/javascripts/node_modules/@types/mute-stream/README.md
clapton-0.0.14 lib/clapton/javascripts/node_modules/@types/mute-stream/README.md
clapton-0.0.13 lib/clapton/javascripts/node_modules/@types/mute-stream/README.md
clapton-0.0.12 lib/clapton/javascripts/node_modules/@types/mute-stream/README.md
clapton-0.0.11 lib/clapton/javascripts/node_modules/@types/mute-stream/README.md
clapton-0.0.10 lib/clapton/javascripts/node_modules/@types/mute-stream/README.md
clapton-0.0.9 lib/clapton/javascripts/node_modules/@types/mute-stream/README.md
clapton-0.0.8 lib/clapton/javascripts/node_modules/@types/mute-stream/README.md
clapton-0.0.7 lib/clapton/javascripts/node_modules/@types/mute-stream/README.md