TypeScript中函数通过Interface来描述参数时,如何设置参数的默认值?interface Opts {
method: string;
header: object;
body: object;
}function request(url: string, opts: Opts) { // opts.method,opts.header等参数如何设置默认值?
// 省略代码...}
添加回答
举报
0/150
提交
取消