fix(react): export proper types of animations and gestures (#20311)

This commit is contained in:
Liam DeBeasi
2020-01-27 12:38:18 -05:00
committed by GitHub
parent 44211c11ee
commit 00340885fb
2 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@ export interface CreateAnimationProps {
}
export class CreateAnimation extends React.PureComponent<CreateAnimationProps> {
private nodes: Map<number, HTMLElement> = new Map();
nodes: Map<number, HTMLElement> = new Map();
animation: Animation;
constructor(props: any) {