go.d.ts 403 B

123456789101112131415161718192021
  1. /**
  2. * 请求参数定义
  3. * @apiName ui.nav.go
  4. */
  5. export interface IUiNavGoParams {
  6. [key: string]: any;
  7. }
  8. /**
  9. * 返回结果定义
  10. * @apiName ui.nav.go
  11. */
  12. export interface IUiNavGoResult {
  13. [key: string]: any;
  14. }
  15. /**
  16. *
  17. * @apiName ui.nav.go
  18. * @supportVersion ios: 2.6.0 android: 2.6.0
  19. */
  20. export declare function go$(params: IUiNavGoParams): Promise<IUiNavGoResult>;
  21. export default go$;