Files
DefinitelyTyped/types/superagent-prefix/index.d.ts
2017-08-20 15:37:53 -07:00

15 lines
402 B
TypeScript

// Type definitions for superagent-prefix 0.0
// Project: https://github.com/johntron/superagent-prefix
// Definitions by: Michael Ledin <https://github.com/mxl>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.2
import * as request from 'superagent';
declare function plugin(prefix: string): request.Plugin;
declare namespace plugin {
}
export = plugin;