DefinitelyTyped/types/mithril/request.d.ts

12 lines
226 B
TypeScript

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