@leafer/interface 1.3.3 → 1.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leafer/interface",
3
- "version": "1.3.3",
3
+ "version": "1.4.0",
4
4
  "description": "@leafer/interface",
5
5
  "author": "Chao (Leafer) Wan",
6
6
  "license": "MIT",
@@ -0,0 +1,86 @@
1
+ import { IObject } from '../data/IData'
2
+
3
+ export type ITransition = IAnimateOptions | IAnimateEasingName | number | boolean
4
+
5
+ export interface IAnimateOptions {
6
+ easing?: IAnimateEasing
7
+
8
+ delay?: number
9
+ duration?: number
10
+ ending?: IAnimateEnding
11
+
12
+ reverse?: boolean
13
+ swing?: boolean | number
14
+
15
+ loop?: boolean | number
16
+ loopDelay?: number
17
+
18
+ speed?: number
19
+
20
+ join?: boolean
21
+ autoplay?: boolean
22
+
23
+ attrs?: string[]
24
+ event?: IAnimateEvents
25
+ }
26
+
27
+
28
+ export interface IAnimateEasingFunction {
29
+ (t: number): number
30
+ }
31
+
32
+ export interface ICustomEasingFunction {
33
+ (...arg: any): IAnimateEasingFunction
34
+ }
35
+
36
+
37
+ export type IAnimateEasing =
38
+ | IAnimateEasingName
39
+ | ICubicBezierEasing
40
+ | IStepsEasing
41
+ | IObject
42
+
43
+ export interface ICubicBezierEasing {
44
+ name: 'cubic-bezier',
45
+ value: [number, number, number, number]
46
+ }
47
+
48
+ export interface IStepsEasing {
49
+ name: 'steps',
50
+ value: number | [number, 'floor' | 'round' | 'ceil']
51
+ }
52
+
53
+
54
+ export type IAnimateEasingName =
55
+ | 'linear'
56
+ | 'ease'
57
+ | 'ease-in' | 'ease-out' | 'ease-in-out'
58
+ | 'sine-in' | 'sine-out' | 'sine-in-out'
59
+ | 'quad-in' | 'quad-out' | 'quad-in-out'
60
+ | 'cubic-in' | 'cubic-out' | 'cubic-in-out'
61
+ | 'quart-in' | 'quart-out' | 'quart-in-out'
62
+ | 'quint-in' | 'quint-out' | 'quint-in-out'
63
+ | 'expo-in' | 'expo-out' | 'expo-in-out'
64
+ | 'circ-in' | 'circ-out' | 'circ-in-out'
65
+ | 'back-in' | 'back-out' | 'back-in-out'
66
+ | 'elastic-in' | 'elastic-out' | 'elastic-in-out'
67
+ | 'bounce-in' | 'bounce-out' | 'bounce-in-out'
68
+
69
+
70
+ export type IAnimateEnding = 'auto' | 'from' | 'to'
71
+
72
+ export interface IAnimateEvents {
73
+ created?: IAnimateEventFunction
74
+
75
+ play?: IAnimateEventFunction
76
+ pause?: IAnimateEventFunction
77
+ stop?: IAnimateEventFunction
78
+ seek?: IAnimateEventFunction
79
+
80
+ update?: IAnimateEventFunction
81
+ completed?: IAnimateEventFunction
82
+ }
83
+
84
+ export interface IAnimateEventFunction {
85
+ (animate?: any): any
86
+ }
@@ -20,6 +20,7 @@ import { IPathCommandObject, IPathCommandData } from '../path/IPathCommand'
20
20
  import { IWindingRule, IPath2D } from '../canvas/ICanvas'
21
21
  import { IJSONOptions } from '../file/IExport'
22
22
  import { IMotionPathData } from '../path/IPathData'
23
+ import { ITransition } from '../animate/ITransition'
23
24
 
24
25
 
25
26
  export interface ICachedLeaf {
@@ -515,7 +516,7 @@ export interface ILeaf extends ILeafRender, ILeafHit, ILeafBounds, ILeafMatrix,
515
516
 
516
517
  __bindLeafer(leafer: ILeaferBase | null): void
517
518
 
518
- set(data: IObject, transition?: any): void
519
+ set(data: IObject, transition?: ITransition): void
519
520
  get(name?: string | string[] | IObject): ILeafInputData | IValue
520
521
  setAttr(name: string, value: any): void
521
522
  getAttr(name: string): any
@@ -613,22 +614,22 @@ export interface ILeaf extends ILeafRender, ILeafHit, ILeafBounds, ILeafMatrix,
613
614
  getWorldPointByPage(page: IPointData, relative?: ILeaf, distance?: boolean, change?: boolean): IPointData
614
615
 
615
616
  // transform
616
- setTransform(transform?: IMatrixData, resize?: boolean): void
617
- transform(transform?: IMatrixData, resize?: boolean): void
618
- move(x: number | IPointData, y?: number, transition?: any): void
617
+ setTransform(transform?: IMatrixData, resize?: boolean, transition?: ITransition): void
618
+ transform(transform?: IMatrixData, resize?: boolean, transition?: ITransition): void
619
+ move(x: number | IPointData, y?: number, transition?: ITransition): void
619
620
 
620
- moveInner(x: number | IPointData, y?: number, transition?: any): void
621
- scaleOf(origin: IPointData | IAlign, scaleX: number, scaleY?: number, resize?: boolean): void
621
+ moveInner(x: number | IPointData, y?: number, transition?: ITransition): void
622
+ scaleOf(origin: IPointData | IAlign, scaleX: number, scaleY?: number | ITransition, resize?: boolean, transition?: ITransition): void
622
623
  rotateOf(origin: IPointData | IAlign, rotation: number): void
623
- skewOf(origin: IPointData | IAlign, skewX: number, skewY?: number, resize?: boolean): void
624
+ skewOf(origin: IPointData | IAlign, skewX: number, skewY?: number, resize?: boolean, transition?: ITransition): void
624
625
 
625
- transformWorld(worldTransform?: IMatrixData, resize?: boolean): void
626
- moveWorld(x: number | IPointData, y?: number, transition?: any): void
627
- scaleOfWorld(worldOrigin: IPointData, scaleX: number, scaleY?: number, resize?: boolean): void
628
- rotateOfWorld(worldOrigin: IPointData, rotation: number): void
629
- skewOfWorld(worldOrigin: IPointData, skewX: number, skewY?: number, resize?: boolean): void
626
+ transformWorld(worldTransform?: IMatrixData, resize?: boolean, transition?: ITransition): void
627
+ moveWorld(x: number | IPointData, y?: number, transition?: ITransition): void
628
+ scaleOfWorld(worldOrigin: IPointData, scaleX: number, scaleY?: number | ITransition, resize?: boolean, transition?: ITransition): void
629
+ rotateOfWorld(worldOrigin: IPointData, rotation: number, transition?: ITransition): void
630
+ skewOfWorld(worldOrigin: IPointData, skewX: number, skewY?: number, resize?: boolean, transition?: ITransition): void
630
631
 
631
- flip(axis: IAxis): void
632
+ flip(axis: IAxis, transition?: ITransition): void
632
633
 
633
634
  scaleResize(scaleX: number, scaleY: number, noResize?: boolean): void
634
635
  __scaleResize(scaleX: number, scaleY: number): void
package/src/index.ts CHANGED
@@ -54,4 +54,6 @@ export { ITransformer } from './interaction/ITransformer'
54
54
  export { INumber, IBoolean, IString, IValue, IFourNumber, IPathString, ITimer, IObject, INumberMap, IStringMap, IBooleanMap, IFunctionMap, IPointDataMap, IDataTypeHandle } from './data/IData'
55
55
  export { ILeafList, ILeafArrayMap, ILeafMap, ILeafLevelList, ILeafListItemCallback } from './data/IList'
56
56
  export { IPoint, IPointData, IFromToData, IUnitPointData, IRotationPointData, IScrollPointData, IClientPointData, IRadiusPointData, ISize, ISizeData, IScreenSizeData, IBounds, IBoundsData, IBoundsDataFn, IOffsetBoundsData, ITwoPointBoundsData, IAutoBounds, IAutoBoxData, IAutoBoundsData, IMatrix, IMatrixData, IMatrixWithBoundsData, IMatrixWithScaleData, IMatrixWithOptionScaleData, IMatrixWithBoundsScaleData, IMatrixWithLayoutData, IScaleRotationData, IScaleData, ISkewData, ILayoutBoundsData, ILayoutData, ILayoutAttr } from './math/IMath'
57
- export { IFunction, IStringFunction, INumberFunction, IObjectFunction, IPointDataFunction, IAttrDecorator } from './function/IFunction'
57
+ export { IFunction, IStringFunction, INumberFunction, IObjectFunction, IPointDataFunction, IAttrDecorator } from './function/IFunction'
58
+
59
+ export { ITransition, IAnimateEasing, ICubicBezierEasing, IStepsEasing, IAnimateEasingFunction, IAnimateEasingName, IAnimateEnding, IAnimateEvents, IAnimateEventFunction, ICustomEasingFunction, IAnimateOptions } from './animate/ITransition'
package/types/index.d.ts CHANGED
@@ -1291,6 +1291,52 @@ interface IMotionPathData {
1291
1291
  data: IPathCommandData;
1292
1292
  }
1293
1293
 
1294
+ type ITransition = IAnimateOptions | IAnimateEasingName | number | boolean;
1295
+ interface IAnimateOptions {
1296
+ easing?: IAnimateEasing;
1297
+ delay?: number;
1298
+ duration?: number;
1299
+ ending?: IAnimateEnding;
1300
+ reverse?: boolean;
1301
+ swing?: boolean | number;
1302
+ loop?: boolean | number;
1303
+ loopDelay?: number;
1304
+ speed?: number;
1305
+ join?: boolean;
1306
+ autoplay?: boolean;
1307
+ attrs?: string[];
1308
+ event?: IAnimateEvents;
1309
+ }
1310
+ interface IAnimateEasingFunction {
1311
+ (t: number): number;
1312
+ }
1313
+ interface ICustomEasingFunction {
1314
+ (...arg: any): IAnimateEasingFunction;
1315
+ }
1316
+ type IAnimateEasing = IAnimateEasingName | ICubicBezierEasing | IStepsEasing | IObject;
1317
+ interface ICubicBezierEasing {
1318
+ name: 'cubic-bezier';
1319
+ value: [number, number, number, number];
1320
+ }
1321
+ interface IStepsEasing {
1322
+ name: 'steps';
1323
+ value: number | [number, 'floor' | 'round' | 'ceil'];
1324
+ }
1325
+ type IAnimateEasingName = 'linear' | 'ease' | 'ease-in' | 'ease-out' | 'ease-in-out' | 'sine-in' | 'sine-out' | 'sine-in-out' | 'quad-in' | 'quad-out' | 'quad-in-out' | 'cubic-in' | 'cubic-out' | 'cubic-in-out' | 'quart-in' | 'quart-out' | 'quart-in-out' | 'quint-in' | 'quint-out' | 'quint-in-out' | 'expo-in' | 'expo-out' | 'expo-in-out' | 'circ-in' | 'circ-out' | 'circ-in-out' | 'back-in' | 'back-out' | 'back-in-out' | 'elastic-in' | 'elastic-out' | 'elastic-in-out' | 'bounce-in' | 'bounce-out' | 'bounce-in-out';
1326
+ type IAnimateEnding = 'auto' | 'from' | 'to';
1327
+ interface IAnimateEvents {
1328
+ created?: IAnimateEventFunction;
1329
+ play?: IAnimateEventFunction;
1330
+ pause?: IAnimateEventFunction;
1331
+ stop?: IAnimateEventFunction;
1332
+ seek?: IAnimateEventFunction;
1333
+ update?: IAnimateEventFunction;
1334
+ completed?: IAnimateEventFunction;
1335
+ }
1336
+ interface IAnimateEventFunction {
1337
+ (animate?: any): any;
1338
+ }
1339
+
1294
1340
  interface ICachedLeaf {
1295
1341
  canvas: ILeaferCanvas;
1296
1342
  matrix?: IMatrix;
@@ -1568,7 +1614,7 @@ interface ILeaf extends ILeafRender, ILeafHit, ILeafBounds, ILeafMatrix, ILeafDa
1568
1614
  nextRender(item: IFunction, bind?: IObject, off?: 'off'): void;
1569
1615
  removeNextRender(item: IFunction): void;
1570
1616
  __bindLeafer(leafer: ILeaferBase | null): void;
1571
- set(data: IObject, transition?: any): void;
1617
+ set(data: IObject, transition?: ITransition): void;
1572
1618
  get(name?: string | string[] | IObject): ILeafInputData | IValue;
1573
1619
  setAttr(name: string, value: any): void;
1574
1620
  getAttr(name: string): any;
@@ -1637,19 +1683,19 @@ interface ILeaf extends ILeafRender, ILeafHit, ILeafBounds, ILeafMatrix, ILeafDa
1637
1683
  getWorldPointByBox(box: IPointData, relative?: ILeaf, distance?: boolean, change?: boolean): IPointData;
1638
1684
  getWorldPointByLocal(local: IPointData, relative?: ILeaf, distance?: boolean, change?: boolean): IPointData;
1639
1685
  getWorldPointByPage(page: IPointData, relative?: ILeaf, distance?: boolean, change?: boolean): IPointData;
1640
- setTransform(transform?: IMatrixData, resize?: boolean): void;
1641
- transform(transform?: IMatrixData, resize?: boolean): void;
1642
- move(x: number | IPointData, y?: number, transition?: any): void;
1643
- moveInner(x: number | IPointData, y?: number, transition?: any): void;
1644
- scaleOf(origin: IPointData | IAlign, scaleX: number, scaleY?: number, resize?: boolean): void;
1686
+ setTransform(transform?: IMatrixData, resize?: boolean, transition?: ITransition): void;
1687
+ transform(transform?: IMatrixData, resize?: boolean, transition?: ITransition): void;
1688
+ move(x: number | IPointData, y?: number, transition?: ITransition): void;
1689
+ moveInner(x: number | IPointData, y?: number, transition?: ITransition): void;
1690
+ scaleOf(origin: IPointData | IAlign, scaleX: number, scaleY?: number | ITransition, resize?: boolean, transition?: ITransition): void;
1645
1691
  rotateOf(origin: IPointData | IAlign, rotation: number): void;
1646
- skewOf(origin: IPointData | IAlign, skewX: number, skewY?: number, resize?: boolean): void;
1647
- transformWorld(worldTransform?: IMatrixData, resize?: boolean): void;
1648
- moveWorld(x: number | IPointData, y?: number, transition?: any): void;
1649
- scaleOfWorld(worldOrigin: IPointData, scaleX: number, scaleY?: number, resize?: boolean): void;
1650
- rotateOfWorld(worldOrigin: IPointData, rotation: number): void;
1651
- skewOfWorld(worldOrigin: IPointData, skewX: number, skewY?: number, resize?: boolean): void;
1652
- flip(axis: IAxis): void;
1692
+ skewOf(origin: IPointData | IAlign, skewX: number, skewY?: number, resize?: boolean, transition?: ITransition): void;
1693
+ transformWorld(worldTransform?: IMatrixData, resize?: boolean, transition?: ITransition): void;
1694
+ moveWorld(x: number | IPointData, y?: number, transition?: ITransition): void;
1695
+ scaleOfWorld(worldOrigin: IPointData, scaleX: number, scaleY?: number | ITransition, resize?: boolean, transition?: ITransition): void;
1696
+ rotateOfWorld(worldOrigin: IPointData, rotation: number, transition?: ITransition): void;
1697
+ skewOfWorld(worldOrigin: IPointData, skewX: number, skewY?: number, resize?: boolean, transition?: ITransition): void;
1698
+ flip(axis: IAxis, transition?: ITransition): void;
1653
1699
  scaleResize(scaleX: number, scaleY: number, noResize?: boolean): void;
1654
1700
  __scaleResize(scaleX: number, scaleY: number): void;
1655
1701
  resizeWidth(width: number): void;
@@ -2218,4 +2264,4 @@ interface ITransformer {
2218
2264
  destroy(): void;
2219
2265
  }
2220
2266
 
2221
- export type { ACommandData, ArcCommandData, ArcToCommandData, BezierCurveToCommandObject, CCommandData, CanvasPathCommand, EllipseCommandData, HCommandData, IAlign, IAnimateEvent, IAnswer, IAppBase, IAround, IAttrDecorator, IAutoBounds, IAutoBoundsData, IAutoBoxData, IAutoSize, IAxis, IAxisAlign, IAxisReverse, IBaseLineAlign, IBlendMode, IBlob, IBlobFunction, IBoolean, IBooleanMap, IBounds, IBoundsData, IBoundsDataFn, IBoundsType, IBranch, IBranchRender, IBranchRenderModule, ICachedLeaf, ICanvasAttr, ICanvasCacheOptions, ICanvasContext2D, ICanvasContext2DSettings, ICanvasManager, ICanvasPattern, ICanvasStrokeOptions, ICanvasType, IChildEvent, IClientPointData, IConstraint, IConstraintType, IControl, ICreator, ICursorConfig, ICursorRotate, ICursorRotateMap, ICursorType, ICursorTypeMap, IDataProcessor, IDataTypeHandle, IDirection, IDirection4, IDragEvent, IDropEvent, IEditSize, IEraserType, IEvent, IEventListener, IEventListenerId, IEventListenerItem, IEventListenerMap, IEventListenerOptions, IEventMap, IEventOption, IEventTarget, IEventer, IExportFileType, IExportImageType, IExportOnCanvasFunction, IExportOptions, IExportResult, IExportResultFunction, IFindCondition, IFindMethod, IFinder, IFlowAlign, IFlowAxisAlign, IFlowBoxType, IFlowType, IFlowWrap, IFourNumber, IFromToData, IFunction, IFunctionMap, IGap, IHitCanvas, IHitCanvasConfig, IHitCanvasManager, IHitType, IImageCursor, IImageEvent, IImageManager, IInteraction, IInteractionCanvas, IInteractionConfig, IJSONOptions, IKeepTouchData, IKeyEvent, ILayoutAttr, ILayoutBlockData, ILayoutBoundsData, ILayoutChangedData, ILayoutData, ILayoutEvent, ILayouter, ILayouterConfig, ILeaf, ILeafArrayMap, ILeafAttrData, ILeafAttrDescriptor, ILeafAttrDescriptorFn, ILeafBounds, ILeafBoundsModule, ILeafComputedData, ILeafData, ILeafDataOptions, ILeafDataProxy, ILeafDataProxyModule, ILeafEventer, ILeafEventerModule, ILeafHit, ILeafHitModule, ILeafInputData, ILeafLayout, ILeafLevelList, ILeafList, ILeafListItemCallback, ILeafMap, ILeafMatrix, ILeafMatrixModule, ILeafRender, ILeafRenderModule, ILeaferAttrData, ILeaferBase, ILeaferCanvas, ILeaferCanvasConfig, ILeaferCanvasView, ILeaferConfig, ILeaferEvent, ILeaferImage, ILeaferImageCacheCanvas, ILeaferImageConfig, ILeaferImageOnError, ILeaferImageOnLoaded, ILeaferImagePatternPaint, ILeaferType, ILeaferTypeCreator, ILeaferTypeFunction, ILeaferTypeList, ILocationType, IMaskType, IMatrix, IMatrixData, IMatrixWithBoundsData, IMatrixWithBoundsScaleData, IMatrixWithLayoutData, IMatrixWithOptionScaleData, IMatrixWithScaleData, IMiniapp, IMiniappSelect, IMiniappSizeView, IMotionPathData, IMoveConfig, IMoveEvent, IMultiTouchConfig, IMultiTouchData, INumber, INumberFunction, INumberMap, IObject, IObjectFunction, IOffsetBoundsData, IPartLayoutConfig, IPath2D, IPathCommandData, IPathCommandObject, IPathCreator, IPathDrawer, IPathString, IPercentData, IPickBottom, IPickOptions, IPickResult, IPicker, IPlatform, IPlugin, IPoint, IPointData, IPointDataFunction, IPointDataMap, IPointGap, IPointerConfig, IPointerEvent, IPropertyEvent, IRadiusPointData, IRangeSize, IRenderEvent, IRenderOptions, IRenderer, IRendererConfig, IResizeEvent, IResizeEventListener, IRotateEvent, IRotationPointData, IScaleData, IScaleRotationData, IScreenSizeData, IScrollPointData, ISelector, ISelectorConfig, ISelectorProxy, ISide, ISize, ISizeData, ISkewData, ISkiaCanvas, ISkiaCanvasExportConfig, ISkiaNAPICanvas, IStateStyleType, IString, IStringFunction, IStringMap, ISwipeEvent, ITaskItem, ITaskOptions, ITaskProcessor, ITaskProcessorConfig, ITextMetrics, ITimer, ITouchConfig, ITransformer, ITwoPointBoundsData, IUICreator, IUIEvent, IUnitData, IUnitPointData, IUpdateEvent, IValue, IWatchEvent, IWatchEventData, IWatcher, IWatcherConfig, IWheelConfig, IWheelEvent, IWindingRule, IZoomConfig, IZoomEvent, IZoomType, IZoomView, InnerId, LCommandData, LineToCommandObject, MCommandData, MoveToCommandObject, PointerType, QCommandData, QuadraticCurveToCommandObject, RectCommandData, RoundRectCommandData, SCommandData, TCommandData, VCommandData, ZCommandData };
2267
+ export type { ACommandData, ArcCommandData, ArcToCommandData, BezierCurveToCommandObject, CCommandData, CanvasPathCommand, EllipseCommandData, HCommandData, IAlign, IAnimateEasing, IAnimateEasingFunction, IAnimateEasingName, IAnimateEnding, IAnimateEvent, IAnimateEventFunction, IAnimateEvents, IAnimateOptions, IAnswer, IAppBase, IAround, IAttrDecorator, IAutoBounds, IAutoBoundsData, IAutoBoxData, IAutoSize, IAxis, IAxisAlign, IAxisReverse, IBaseLineAlign, IBlendMode, IBlob, IBlobFunction, IBoolean, IBooleanMap, IBounds, IBoundsData, IBoundsDataFn, IBoundsType, IBranch, IBranchRender, IBranchRenderModule, ICachedLeaf, ICanvasAttr, ICanvasCacheOptions, ICanvasContext2D, ICanvasContext2DSettings, ICanvasManager, ICanvasPattern, ICanvasStrokeOptions, ICanvasType, IChildEvent, IClientPointData, IConstraint, IConstraintType, IControl, ICreator, ICubicBezierEasing, ICursorConfig, ICursorRotate, ICursorRotateMap, ICursorType, ICursorTypeMap, ICustomEasingFunction, IDataProcessor, IDataTypeHandle, IDirection, IDirection4, IDragEvent, IDropEvent, IEditSize, IEraserType, IEvent, IEventListener, IEventListenerId, IEventListenerItem, IEventListenerMap, IEventListenerOptions, IEventMap, IEventOption, IEventTarget, IEventer, IExportFileType, IExportImageType, IExportOnCanvasFunction, IExportOptions, IExportResult, IExportResultFunction, IFindCondition, IFindMethod, IFinder, IFlowAlign, IFlowAxisAlign, IFlowBoxType, IFlowType, IFlowWrap, IFourNumber, IFromToData, IFunction, IFunctionMap, IGap, IHitCanvas, IHitCanvasConfig, IHitCanvasManager, IHitType, IImageCursor, IImageEvent, IImageManager, IInteraction, IInteractionCanvas, IInteractionConfig, IJSONOptions, IKeepTouchData, IKeyEvent, ILayoutAttr, ILayoutBlockData, ILayoutBoundsData, ILayoutChangedData, ILayoutData, ILayoutEvent, ILayouter, ILayouterConfig, ILeaf, ILeafArrayMap, ILeafAttrData, ILeafAttrDescriptor, ILeafAttrDescriptorFn, ILeafBounds, ILeafBoundsModule, ILeafComputedData, ILeafData, ILeafDataOptions, ILeafDataProxy, ILeafDataProxyModule, ILeafEventer, ILeafEventerModule, ILeafHit, ILeafHitModule, ILeafInputData, ILeafLayout, ILeafLevelList, ILeafList, ILeafListItemCallback, ILeafMap, ILeafMatrix, ILeafMatrixModule, ILeafRender, ILeafRenderModule, ILeaferAttrData, ILeaferBase, ILeaferCanvas, ILeaferCanvasConfig, ILeaferCanvasView, ILeaferConfig, ILeaferEvent, ILeaferImage, ILeaferImageCacheCanvas, ILeaferImageConfig, ILeaferImageOnError, ILeaferImageOnLoaded, ILeaferImagePatternPaint, ILeaferType, ILeaferTypeCreator, ILeaferTypeFunction, ILeaferTypeList, ILocationType, IMaskType, IMatrix, IMatrixData, IMatrixWithBoundsData, IMatrixWithBoundsScaleData, IMatrixWithLayoutData, IMatrixWithOptionScaleData, IMatrixWithScaleData, IMiniapp, IMiniappSelect, IMiniappSizeView, IMotionPathData, IMoveConfig, IMoveEvent, IMultiTouchConfig, IMultiTouchData, INumber, INumberFunction, INumberMap, IObject, IObjectFunction, IOffsetBoundsData, IPartLayoutConfig, IPath2D, IPathCommandData, IPathCommandObject, IPathCreator, IPathDrawer, IPathString, IPercentData, IPickBottom, IPickOptions, IPickResult, IPicker, IPlatform, IPlugin, IPoint, IPointData, IPointDataFunction, IPointDataMap, IPointGap, IPointerConfig, IPointerEvent, IPropertyEvent, IRadiusPointData, IRangeSize, IRenderEvent, IRenderOptions, IRenderer, IRendererConfig, IResizeEvent, IResizeEventListener, IRotateEvent, IRotationPointData, IScaleData, IScaleRotationData, IScreenSizeData, IScrollPointData, ISelector, ISelectorConfig, ISelectorProxy, ISide, ISize, ISizeData, ISkewData, ISkiaCanvas, ISkiaCanvasExportConfig, ISkiaNAPICanvas, IStateStyleType, IStepsEasing, IString, IStringFunction, IStringMap, ISwipeEvent, ITaskItem, ITaskOptions, ITaskProcessor, ITaskProcessorConfig, ITextMetrics, ITimer, ITouchConfig, ITransformer, ITransition, ITwoPointBoundsData, IUICreator, IUIEvent, IUnitData, IUnitPointData, IUpdateEvent, IValue, IWatchEvent, IWatchEventData, IWatcher, IWatcherConfig, IWheelConfig, IWheelEvent, IWindingRule, IZoomConfig, IZoomEvent, IZoomType, IZoomView, InnerId, LCommandData, LineToCommandObject, MCommandData, MoveToCommandObject, PointerType, QCommandData, QuadraticCurveToCommandObject, RectCommandData, RoundRectCommandData, SCommandData, TCommandData, VCommandData, ZCommandData };