getCurrentId.d.ts 493 B

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