We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
export interface PopoverPropsType { onSelect?: (node: any, index?: number) => void; overlay: React.ComponentType; disabled?: boolean; }
overlay: React.ComponentType<any>; 这指类定义,在VS下编译是无法通过的。应该是 overlay: React.ReactNode;
The text was updated successfully, but these errors were encountered:
Translation of this issue:
Export interface PopoverPropsType { onSelect?: (node: any, index?: number) => void; Overlay: React.ComponentType; Disabled?: boolean; }
Overlay: React.ComponentType; This refers to the class definition. Compiling through VS is not possible. Should be overlay: React.ReactNode;
Sorry, something went wrong.
448ab17
No branches or pull requests
export interface PopoverPropsType {
onSelect?: (node: any, index?: number) => void;
overlay: React.ComponentType;
disabled?: boolean;
}
The text was updated successfully, but these errors were encountered: