vue-amazing-ui
Version:
An Amazing Vue3 UI Components Library, Using TypeScript.
44 lines (43 loc) • 1.49 kB
TypeScript
export interface Props {
width?: string | number;
allowClear?: boolean;
autoSize?: boolean | {
minRows?: number;
maxRows?: number;
};
disabled?: boolean;
placeholder?: string;
maxlength?: number;
showCount?: boolean;
value?: string;
valueModifiers?: object;
}
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
change: (...args: any[]) => void;
compositionend: (...args: any[]) => void;
compositionstart: (...args: any[]) => void;
"update:value": (...args: any[]) => void;
enter: (...args: any[]) => void;
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
onChange?: ((...args: any[]) => any) | undefined;
onCompositionend?: ((...args: any[]) => any) | undefined;
onCompositionstart?: ((...args: any[]) => any) | undefined;
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
onEnter?: ((...args: any[]) => any) | undefined;
}>, {
placeholder: string;
width: string | number;
disabled: boolean;
value: string;
allowClear: boolean;
maxlength: number;
showCount: boolean;
valueModifiers: object;
autoSize: boolean | {
minRows?: number;
maxRows?: number;
};
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
textareaRef: HTMLTextAreaElement;
}, HTMLDivElement>;
export default _default;