Files
DefinitelyTyped/types/mithril/request.d.ts
2017-04-18 13:54:27 -07:00

12 lines
232 B
TypeScript

import { request, jsonp } from "mithril";
declare namespace RequestService {
interface Static {
request: typeof request;
jsonp: typeof jsonp;
}
}
declare const RequestService: RequestService.Static;
export = RequestService;