smartrequest/dist/index.d.ts

8 lines
622 B
TypeScript
Raw Normal View History

2017-01-28 23:51:47 +00:00
import * as interfaces from './smartrequest.interfaces';
2017-01-29 00:12:42 +00:00
export { request } from './smartrequest.request';
export { ISmartRequestOptions } from './smartrequest.interfaces';
2017-06-09 19:48:16 +00:00
export declare let get: (domainArg: string, optionsArg?: interfaces.ISmartRequestOptions) => Promise<Response>;
export declare let post: (domainArg: string, optionsArg?: interfaces.ISmartRequestOptions) => Promise<Response>;
export declare let put: (domainArg: string, optionsArg?: interfaces.ISmartRequestOptions) => Promise<Response>;
export declare let del: (domainArg: string, optionsArg?: interfaces.ISmartRequestOptions) => Promise<Response>;