You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
508 B
21 lines
508 B
/**
|
|
* 输入框(单行) 请求参数定义
|
|
* @apiName ui.input.plain
|
|
*/
|
|
export interface IUiInputPlainParams {
|
|
[key: string]: any;
|
|
}
|
|
/**
|
|
* 输入框(单行) 返回结果定义
|
|
* @apiName ui.input.plain
|
|
*/
|
|
export interface IUiInputPlainResult {
|
|
[key: string]: any;
|
|
}
|
|
/**
|
|
* 输入框(单行)
|
|
* @apiName ui.input.plain
|
|
* @supportVersion ios: 2.4.0 android: 2.4.0
|
|
*/
|
|
export declare function plain$(params: IUiInputPlainParams): Promise<IUiInputPlainResult>;
|
|
export default plain$;
|
|
|