Skip to content

Commit

Permalink
Fix primefaces#3252: InputTextArea proper type def
Browse files Browse the repository at this point in the history
  • Loading branch information
melloware committed Sep 7, 2022
1 parent 9f1e902 commit d919e3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/lib/inputtextarea/inputtextarea.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as React from 'react';
import TooltipOptions from '../tooltip/tooltipoptions';

export interface InputTextareaProps extends Omit<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>, 'ref'> {
export interface InputTextareaProps extends Omit<React.DetailedHTMLProps<React.TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>, 'ref'> {
autoResize?: boolean;
tooltip?: string;
tooltipOptions?: TooltipOptions;
Expand Down

0 comments on commit d919e3b

Please sign in to comment.