作者:xie392地址:https://v.douyin.com/ie9MhaTH/更新时间:2024-12-21
1function message(option: object): void2function message(text: string, onclose?: Function): void3function message(text:string,...args:any[]): void45function message(params: string | object,...args:any[]): void {6console.log(params,args)7}89message({ text: 'hello' })10message('hello')11message('hello',function(){})