mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
feat: export additional symbols needed for strong types
This commit is contained in:
@@ -75,13 +75,16 @@ export type { AccessibilityDecrementEventData, AccessibilityIncrementEventData }
|
||||
export { addTaggedAdditionalCSS, removeTaggedAdditionalCSS, resolveFileNameFromUrl } from './styling/style-scope';
|
||||
export { Background } from './styling/background';
|
||||
export type { CacheMode } from './styling/background';
|
||||
export { parseCSSShadow } from './styling/css-shadow';
|
||||
export { parseCSSShadow, ShadowCSSValues } from './styling/css-shadow';
|
||||
export { parseCSSStroke, StrokeCSSValues } from './styling/css-stroke';
|
||||
export { animationTimingFunctionConverter, timeConverter } from './styling/converters';
|
||||
export { Font, FontStyle, FontWeight, FontVariationSettings } from './styling/font';
|
||||
export type { FontStyleType, FontWeightType, FontVariationSettingsType } from './styling/font-interfaces';
|
||||
export { Style } from './styling/style';
|
||||
export type { CommonLayoutParams } from './styling/style';
|
||||
export * from './styling/style-properties';
|
||||
export * from './styling/length-shared';
|
||||
export { LinearGradient } from './styling/linear-gradient';
|
||||
export { CssAnimationParser, parseKeyframeDeclarations } from './styling/css-animation-parser';
|
||||
export { CSSHelper } from './styling/css-selector';
|
||||
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
export { AbsoluteLayout } from './absolute-layout';
|
||||
export { DockLayout } from './dock-layout';
|
||||
export { FlexboxLayout } from './flexbox-layout';
|
||||
export type { FlexFlow, Flex, AlignSelf, FlexDirection, FlexWrap, JustifyContent, AlignItems, AlignContent } from './flexbox-layout';
|
||||
export { GridLayout, GridUnitType, ItemSpec } from './grid-layout';
|
||||
export { RootLayout, getRootLayout, getRootLayoutById } from './root-layout';
|
||||
export type { RootLayoutOptions, ShadeCoverOptions } from './root-layout';
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
import { CoreTypes } from '../../core-types';
|
||||
import { Color } from '../../color';
|
||||
import { parseCSSShorthand } from './css-utils';
|
||||
import { Length } from './length-shared';
|
||||
|
||||
export interface StrokeCSSValues {
|
||||
width: CoreTypes.LengthType;
|
||||
|
||||
Reference in New Issue
Block a user