mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
fix(core): type collisions with namespace (#8809)
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user