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,6 +1,6 @@
// Types
import { View } from '../core/view';
import { PercentLength } from '../styling/style-properties';
import { PercentLengthType } from '../styling/style-properties';
import { Color } from '../../color';
export type Transformation = {
@@ -53,8 +53,8 @@ export interface AnimationDefinition {
backgroundColor?: Color;
translate?: Pair;
scale?: Pair;
height?: PercentLength | string;
width?: PercentLength | string;
height?: PercentLengthType | string;
width?: PercentLengthType | string;
rotate?: number;
duration?: number;
delay?: number;