mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-20 16:14:57 +08:00
12 lines
239 B
TypeScript
12 lines
239 B
TypeScript
import { request, jsonp } from "mithril";
|
|
|
|
declare namespace RequestService {
|
|
export interface Static {
|
|
request: typeof request;
|
|
jsonp: typeof jsonp;
|
|
}
|
|
}
|
|
|
|
declare const RequestService: RequestService.Static;
|
|
export = RequestService;
|