KC's Workspace
    Preparing search index...

    Construct a type with the properties of T except for those in type K.

    interface WriteStreamEventMap {
        close: [hadError: boolean];
        connect: [];
        connectionAttempt: [ip: string, port: number, family: number];
        connectionAttemptFailed: [
            ip: string,
            port: number,
            family: number,
            error: Error,
        ];
        connectionAttemptTimeout: [ip: string, port: number, family: number];
        data: [data: string | NonSharedBuffer];
        drain: [];
        end: [];
        error: [err: Error];
        finish: [];
        lookup: [
            err: Error
            | null,
            address: string,
            family: number | null,
            host: string,
        ];
        pause: [];
        pipe: [src: Readable];
        readable: [];
        ready: [];
        resize: [];
        resume: [];
        timeout: [];
        unpipe: [src: Readable];
    }

    Hierarchy (View Summary)

    Index

    Properties

    close: [hadError: boolean]
    connect: []
    connectionAttempt: [ip: string, port: number, family: number]
    connectionAttemptFailed: [
        ip: string,
        port: number,
        family: number,
        error: Error,
    ]
    connectionAttemptTimeout: [ip: string, port: number, family: number]
    data: [data: string | NonSharedBuffer]
    drain: []
    end: []
    error: [err: Error]
    finish: []
    lookup: [
        err: Error
        | null,
        address: string,
        family: number | null,
        host: string,
    ]
    pause: []
    pipe: [src: Readable]
    readable: []
    ready: []
    resize: []
    resume: []
    timeout: []
    unpipe: [src: Readable]