// 使用 axios({ ... }) 时,如果发送 get 请求, method 属性就可以省略 function myAxios(config: { url: string; method?: string}) {} myAxios({ url: '' // method 可填可不填 })