2.1.4 • Published 6 months ago

@types/oboe v2.1.4

Weekly downloads
10,799
License
MIT
Repository
github
Last release
6 months ago

Installation

npm install --save @types/oboe

Summary

This package contains type definitions for oboe (https://github.com/jimhigson/oboe.js).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/oboe.

index.d.ts

// Type definitions for oboe 2.1
// Project: https://github.com/jimhigson/oboe.js
// Definitions by: Jared Klopper <https://github.com/optical>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

/// <reference types="node" />

declare namespace oboe {
    interface OboeFunction extends Function {
        drop: Object;
        (url: string): Oboe; // simple fetch the url
        (options: Options): Oboe; // fetch with full parameters
        (stream: NodeJS.ReadableStream): Oboe; // read data from the given Node stream
        (): Oboe; // parse data given by the emit() calls
    }

    interface Oboe {
        done(callback: (result: any) => void): Oboe;

        fail(callback: (result: FailReason) => void): Oboe;

        node(pattern: string, callback: CallbackSignature): Oboe;
        node(patterns: PatternMap): Oboe;

        on(event: string, pattern: string, callback: CallbackSignature): Oboe;
        on(eventPattern: string, callback: CallbackSignature): Oboe;

        path(pattern: string, callback: CallbackSignature): Oboe;
        path(listeners: any): Oboe;

        removeListener(eventPattern: string, callback: CallbackSignature): Oboe;
        removeListener(event: string, pattern: string, callback: CallbackSignature): Oboe;

        start(callback: (status: number, headers: Object) => void): Oboe;

        abort():void;

        emit(message: 'data' | 'end', data?: string): void;

        source: string;
    }

    interface CallbackSignature {
          (node: any, pathOrHeaders: any, ancestors: Object[]): any;
    }

    interface Options {
        url: string;
        method?: string | undefined;
        headers?: Object | undefined;
        body?: any;
        cached?: boolean | undefined;
        withCredentials?: boolean | undefined;
    }

    interface FailReason {
        thrown?: Error | undefined;
        statusCode?: number | undefined;
        body?: string | undefined;
        jsonBody?: Object | undefined;
    }

    interface PatternMap {
      [pattern: string]: CallbackSignature
    }
}

declare var oboe: oboe.OboeFunction;

export = oboe;
export as namespace oboe;

Additional Details

  • Last updated: Thu, 08 Jul 2021 18:51:44 GMT
  • Dependencies: @types/node
  • Global values: oboe

Credits

These definitions were written by Jared Klopper.

2.1.2

8 months ago

2.1.4

6 months ago

2.1.3

7 months ago

2.1.1

3 years ago

2.1.0

3 years ago

2.0.29

4 years ago

2.0.28

8 years ago

2.0.27

8 years ago

2.0.26-alpha

8 years ago

2.0.25-alpha

8 years ago

2.0.24-alpha

8 years ago

2.0.23-alpha

8 years ago

2.0.22-alpha

8 years ago

2.0.21-alpha

8 years ago

2.0.20-alpha

8 years ago

2.0.15-alpha

8 years ago

2.0.14-alpha

8 years ago