Node TAP
    Preparing search index...

    Interface ReadOptions<T>

    interface ReadOptions<T extends string | number = string> {
        completer?: Completer | AsyncCompleter;
        default?: T;
        edit?: boolean;
        history?: string[];
        input?: ReadableStream & { isTTY?: boolean };
        output?: WritableStream & { isTTY?: boolean };
        prompt?: string;
        replace?: string;
        silent?: boolean;
        terminal?: boolean;
        timeout?: number;
    }

    Type Parameters

    • T extends string | number = string
    Index

    Properties

    completer?: Completer | AsyncCompleter
    default?: T
    edit?: boolean
    history?: string[]
    input?: ReadableStream & { isTTY?: boolean }
    output?: WritableStream & { isTTY?: boolean }
    prompt?: string
    replace?: string
    silent?: boolean
    terminal?: boolean
    timeout?: number