Improve quality of Typescript types (#10742)

This commit is contained in:
Michael Telatynski
2023-05-05 09:11:14 +01:00
committed by GitHub
parent 542bf68c63
commit a4f0b80692
30 changed files with 74 additions and 75 deletions
+1 -1
View File
@@ -42,7 +42,7 @@ interface IProps {
*/
export default class NodeAnimator extends React.Component<IProps> {
private nodes: Record<string, ReactInstance> = {};
private children: { [key: string]: ReactElement };
private children: { [key: string]: ReactElement } = {};
public static defaultProps: Partial<IProps> = {
startStyles: [],
};