katoikia-app/web-ui/web-react/node_modules/primereact/inputtext/inputtext.d.ts

14 lines
576 B
TypeScript
Raw Normal View History

2022-07-06 04:15:11 +00:00
import * as React from 'react';
import TooltipOptions from '../tooltip/tooltipoptions';
import { KeyFilterType } from '../keyfilter';
export interface InputTextProps extends Omit<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, 'onInput'|'ref'> {
keyfilter?: KeyFilterType;
validateOnly?: boolean;
tooltip?: string;
tooltipOptions?: TooltipOptions;
onInput?(event: React.FormEvent<HTMLInputElement>, validatePattern: boolean): void;
}
export declare class InputText extends React.Component<InputTextProps, any> { }