mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
chore: Enums > CoreTypes
Cleanup type symbol usage by consolidating to manage in one spot. This makes them easier to use as well by providing a single rollup of all the common type symbol's used throughout core.
This commit is contained in:
@@ -1,12 +1,13 @@
|
||||
import { CoreTypes } from '../../core-types';
|
||||
import { Color } from '../../color';
|
||||
import { Length, LengthType, zeroLength } from './style-properties';
|
||||
import { Length, zeroLength } from './style-properties';
|
||||
|
||||
export interface CSSShadow {
|
||||
inset: boolean;
|
||||
offsetX: LengthType;
|
||||
offsetY: LengthType;
|
||||
blurRadius?: LengthType;
|
||||
spreadRadius?: LengthType;
|
||||
offsetX: CoreTypes.LengthType;
|
||||
offsetY: CoreTypes.LengthType;
|
||||
blurRadius?: CoreTypes.LengthType;
|
||||
spreadRadius?: CoreTypes.LengthType;
|
||||
color: Color;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user