first commit
This commit is contained in:
31
grafana/dashboards/requests/node_modules/http-basic/lib/index.js.flow
generated
vendored
Normal file
31
grafana/dashboards/requests/node_modules/http-basic/lib/index.js.flow
generated
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
// @flow
|
||||
// Generated using flowgen2
|
||||
|
||||
import type {Callback} from './Callback';
|
||||
import type {CachedResponse} from './CachedResponse';
|
||||
import type {HttpVerb} from './HttpVerb';
|
||||
import type {ICache} from './ICache';
|
||||
import type {Options} from './Options';
|
||||
const Response = require('http-response-object');
|
||||
import {URL} from 'url';
|
||||
|
||||
declare function request(
|
||||
method: HttpVerb,
|
||||
url: string | URL,
|
||||
options: Options | null | void,
|
||||
callback: Callback,
|
||||
): void | stream$Writable;
|
||||
|
||||
declare function request(
|
||||
method: HttpVerb,
|
||||
url: string | URL,
|
||||
callback: Callback,
|
||||
): void | stream$Writable;
|
||||
|
||||
export default request;
|
||||
export type {HttpVerb};
|
||||
export type {Options};
|
||||
export type {Callback};
|
||||
export {Response};
|
||||
export type {CachedResponse};
|
||||
export type {ICache};
|
||||
Reference in New Issue
Block a user