UNPKG

244 BTypeScriptView Raw
1import { request, jsonp } from '.';
2
3declare namespace RequestService {
4 interface Static {
5 request: typeof request;
6 jsonp: typeof jsonp;
7 }
8}
9
10declare const RequestService: RequestService.Static;
11export = RequestService;