Lines Matching refs:dial
18 ## call.dial<sup>(deprecated)</sup>
20 dial\(phoneNumber: string, callback: AsyncCallback\<boolean\>\): void
44 call.dial("138xxxxxxxx", (err: BusinessError, data: boolean) => {
50 ## call.dial<sup>(deprecated)</sup>
52 dial\(phoneNumber: string, options: DialOptions, callback: AsyncCallback\<boolean\>\): void
80 call.dial("138xxxxxxxx", dialOptions, (err: BusinessError, data: boolean) => {
85 ## call.dial<sup>(deprecated)</sup>
87 dial\(phoneNumber: string, options?: DialOptions\): Promise\<boolean\>
120 call.dial("138xxxxxxxx", dialOptions).then((data: boolean) => {
121 console.log(`dial success, promise: data->${JSON.stringify(data)}`);
123 console.error(`dial fail, promise: err->${JSON.stringify(err)}`);