nutui-uniapp
Version:
京东风格的轻量级移动端 Uniapp、Vue3 组件库(支持小程序开发)
17 lines (14 loc) • 474 B
text/typescript
export interface TextareaAutosizeObject {
/**
* 最大高度
*/
maxHeight?: number | string
/**
* 最小高度
*/
minHeight?: number | string
}
export const textareaConfirmType = ['send', 'search', 'next', 'go', 'done', 'return'] as const
export type TextareaConfirmType = (typeof textareaConfirmType)[number]
export const textareaAdjustKeyboardTo = ['cursor', 'bottom']
export type TextareaAdjustKeyboardTo = (typeof textareaAdjustKeyboardTo)[number]