plain.d.ts 508 B

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