primevue-mirror/src/components/inputtext/InputText.d.ts

11 lines
185 B
TypeScript
Executable File

interface InputTextProps {
value?: string;
}
declare class InputText {
$props: InputTextProps;
$emit(eventName: 'input', value: string): this;
}
export default InputText;