fix(core): type collisions with namespace (#8809)

This commit is contained in:
Nathan Walker
2021-02-25 21:03:07 -08:00
parent 784e9c93cd
commit ab11dc9c9f
110 changed files with 1882 additions and 1827 deletions

View File

@@ -1,4 +1,4 @@
import { AnimationCurve } from '../../enums';
import { Enums } from '../../enums';
import { Trace } from '../../../trace';
import { CSSType, View } from '../../core/view';
import { GridLayout } from '../grid-layout';
@@ -369,7 +369,7 @@ export const defaultTransitionAnimation: TransitionAnimation = {
rotate: 0,
opacity: 1,
duration: 300,
curve: AnimationCurve.easeIn,
curve: Enums.AnimationCurve.easeIn,
};
export const defaultShadeCoverTransitionAnimation: TransitionAnimation = {