| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 | 
import { PluginObject } from 'vue/types/plugin';declare module 'vue/types/vue' {    interface Vue {        $jsonp: typeof jsonp;    }}declare const VueJsonp: PluginObject<never>;declare function jsonp<T = any>(url: string, param?: IJsonpParam, timeout?: number): Promise<T>;export { VueJsonp, jsonp };interface IJsonpParam {        callbackQuery?: string;        callbackName?: string;        [key: string]: any;}
 |