UNPKG

@lobehub/ui

Version:

Lobe UI is an open-source UI component library for building AIGC web apps

32 lines (31 loc) 1.05 kB
import { Ref } from "react"; import { InputNumberProps, InputProps, InputRef } from "antd"; import { OTPProps, OTPRef } from "antd/es/input/OTP"; import { PasswordProps } from "antd/es/input/Password"; import { TextAreaProps, TextAreaRef } from "antd/es/input/TextArea"; import { InputNumberRef } from "rc-input-number"; //#region src/Input/type.d.ts interface InputProps$1 extends InputProps { ref?: Ref<InputRef>; shadow?: boolean; } interface TextAreaProps$1 extends TextAreaProps { ref?: Ref<TextAreaRef>; resize?: boolean; shadow?: boolean; } interface InputNumberProps$1 extends InputNumberProps { ref?: Ref<InputNumberRef>; shadow?: boolean; } interface InputPasswordProps extends PasswordProps { ref?: Ref<InputRef>; shadow?: boolean; } interface InputOPTProps extends OTPProps { ref?: Ref<OTPRef>; shadow?: boolean; } //#endregion export { InputNumberProps$1 as InputNumberProps, InputOPTProps, InputPasswordProps, InputProps$1 as InputProps, TextAreaProps$1 as TextAreaProps }; //# sourceMappingURL=type.d.mts.map