callPhone.d.ts 267 B

1234567891011
  1. export interface RequestCallPhoneParams {
  2. phoneNum: string;
  3. }
  4. declare function callPhone(args: RequestCallPhoneParams): Promise<{}>;
  5. declare namespace callPhone {
  6. var version: {
  7. android: string;
  8. ios: string;
  9. };
  10. }
  11. export default callPhone;