Fix RefObject is not defined error

This commit is contained in:
Rahul-Sagore
2019-04-04 11:08:55 +05:30
parent 74ed93e612
commit f3a77e4b4e

View File

@@ -49,7 +49,7 @@ declare module "react-textarea-autosize" {
/**
* Allows an owner to retrieve the DOM node.
*/
inputRef?: ((node: HTMLTextAreaElement) => void) | RefObject<HTMLTextAreaElement>;
inputRef?: ((node: HTMLTextAreaElement) => void) | React.RefObject<HTMLTextAreaElement>;
}
/**