@leafer/interface 1.9.7 → 1.9.9

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.9.7",
3
+ "version": "1.9.9",
4
4
  "description": "@leafer/interface",
5
5
  "author": "Chao (Leafer) Wan",
6
6
  "license": "MIT",
@@ -265,7 +265,7 @@ export interface ILeafAttrData {
265
265
  lazy?: IBoolean
266
266
  pixelRatio?: INumber
267
267
 
268
- renderSpread?: INumber // 扩大渲染边界
268
+ renderSpread?: IFourNumber // 扩大渲染边界
269
269
 
270
270
  path?: IPathCommandData | IPathCommandObject[] | IPathString
271
271
  windingRule?: IWindingRule
@@ -370,7 +370,7 @@ export interface ILeafComputedData {
370
370
  lazy?: boolean
371
371
  pixelRatio?: number
372
372
 
373
- renderSpread?: number
373
+ renderSpread?: IFourNumber
374
374
 
375
375
  path?: IPathCommandData
376
376
  windingRule?: IWindingRule
@@ -489,6 +489,8 @@ export interface ILeaf extends ILeafRender, ILeafHit, ILeafBounds, ILeafMatrix,
489
489
  __nowWorld?: IMatrixWithBoundsScaleData // use __world or __cameraWorld render
490
490
  __cameraWorld?: IMatrixWithBoundsScaleData // use camera matrix render
491
491
 
492
+ __nowWorldShapeBounds?: IBoundsData
493
+
492
494
  readonly __localMatrix: IMatrixData
493
495
  readonly __localBoxBounds: IBoundsData
494
496
 
@@ -606,8 +608,8 @@ export interface ILeaf extends ILeafRender, ILeafHit, ILeafBounds, ILeafMatrix,
606
608
  __updateFlowLayout(): void
607
609
  __updateNaturalSize(): void
608
610
 
609
- __updateStrokeSpread(): number
610
- __updateRenderSpread(): number
611
+ __updateStrokeSpread(): IFourNumber
612
+ __updateRenderSpread(): IFourNumber
611
613
 
612
614
  __onUpdateSize(): void
613
615
 
@@ -1,4 +1,5 @@
1
1
  import { ILeaf } from '../ILeaf'
2
+ import { IFourNumber } from '../../data/IData'
2
3
 
3
4
  export type ILeafBoundsModule = ILeafBounds & ThisType<ILeaf>
4
5
 
@@ -18,8 +19,8 @@ export interface ILeafBounds {
18
19
  __updateFlowLayout?(): void
19
20
  __updateNaturalSize?(): void
20
21
 
21
- __updateStrokeSpread?(): number
22
- __updateRenderSpread?(): number
22
+ __updateStrokeSpread?(): IFourNumber
23
+ __updateRenderSpread?(): IFourNumber
23
24
 
24
25
  __onUpdateSize?(): void
25
26
  }
@@ -92,4 +92,6 @@ export interface IMultiTouchData {
92
92
  export interface IKeepTouchData {
93
93
  from: IPointData
94
94
  to: IPointData
95
- }
95
+ }
96
+
97
+ export type IGestureType = 'move' | 'zoom' | 'rotate' | 'none' // 手势类型
@@ -75,10 +75,12 @@ export interface IDropEvent extends IPointerEvent {
75
75
 
76
76
  export interface IRotateEvent extends IPointerEvent {
77
77
  rotation: number
78
+ totalRotation?: number
78
79
  }
79
80
 
80
81
  export interface IZoomEvent extends IPointerEvent {
81
82
  scale: number
83
+ totalScale?: number
82
84
  }
83
85
 
84
86
  export interface IMoveEvent extends IDragEvent {
package/src/index.ts CHANGED
@@ -46,12 +46,12 @@ export { IExportFileType, IExportImageType } from './file/IFileType'
46
46
  export { IExportOptions, IJSONOptions, IExportResult, IExportResultFunction, IExportOnCanvasFunction } from './file/IExport'
47
47
 
48
48
  export { InnerId, IEventer, IEventParamsMap, IEventParams, IEventListener, IEventOption, IEventListenerOptions, IEventListenerMap, IEventListenerItem, IEventListenerId } from './event/IEventer'
49
- export { IEventTarget, IEvent, ILeaferEvent, IPropertyEvent, ILayoutEvent, IRenderEvent, IAnimateEvent, IChildEvent, IBoundsEvent, IResizeEvent, IResizeEventListener, IUpdateEvent, IWatchEvent, IMultiTouchData, IKeepTouchData } from './event/IEvent'
49
+ export { IEventTarget, IEvent, ILeaferEvent, IPropertyEvent, ILayoutEvent, IRenderEvent, IAnimateEvent, IChildEvent, IBoundsEvent, IResizeEvent, IResizeEventListener, IUpdateEvent, IWatchEvent, IMultiTouchData, IGestureType, IKeepTouchData } from './event/IEvent'
50
50
  export { IUIEvent, IPointerEvent, PointerType, IDragEvent, IDropEvent, ISwipeEvent, IMoveEvent, IZoomEvent, IRotateEvent, IWheelEvent, IKeyEvent, IShortcutKeys, IShortcutKeysCheck, IShortcutKeyCodes, IKeyCodes, IImageEvent } from './event/IUIEvent'
51
51
  export { IProgressData, IProgressFunction } from './event/IProgress'
52
52
 
53
53
  export { ICursorTypeMap, ICursorRotate, ICursorRotateMap } from './interaction/ICursor'
54
- export { IInteraction, IInteractionCanvas, IInteractionConfig, IMoveConfig, ICursorConfig, IZoomConfig, IWheelConfig, ITouchConfig, IMultiTouchConfig, IPointerConfig } from './interaction/IInteraction'
54
+ export { IInteraction, IInteractionCanvas, IInteractionConfig, IMoveConfig, ICursorConfig, IZoomConfig, IWheelConfig, ITouchConfig, IMultiTouchConfig, ISingleGestureConfig, IPointerConfig } from './interaction/IInteraction'
55
55
  export { ITransformer } from './interaction/ITransformer'
56
56
 
57
57
  export { INumber, IBoolean, IString, IValue, IFourNumber, IPathString, ITimer, IObject, INumberMap, IStringMap, IBooleanMap, IFunctionMap, IPointDataMap, IDataTypeHandle } from './data/IData'
@@ -168,8 +168,16 @@ export interface ITouchConfig {
168
168
 
169
169
  export interface IMultiTouchConfig {
170
170
  disabled?: boolean
171
+ singleGesture?: boolean | ISingleGestureConfig // 是否单一手势,默认为多个
171
172
  }
172
173
 
174
+ export interface ISingleGestureConfig {
175
+ move?: number, // 识别移动的阈值,默认为 5
176
+ scale?: number, // 识别缩放的阈值,默认为 0.03
177
+ rotation?: number, // 识别旋转的阈值,默认为 2度
178
+ count?: number // 连续识别几次锁定手势类型,默认为 2次
179
+ time?: number // 最长手势类型识别时间,默认为 160ms
180
+ }
173
181
 
174
182
  export interface ICursorConfig {
175
183
  stop?: boolean
@@ -2,6 +2,9 @@ import { IMoveEvent, IZoomEvent, IRotateEvent } from '../event/IUIEvent'
2
2
 
3
3
  export interface ITransformer {
4
4
  readonly transforming: boolean
5
+ readonly moving: boolean
6
+ readonly zooming: boolean
7
+ readonly rotating: boolean
5
8
  move(data: IMoveEvent): void
6
9
  zoom(data: IZoomEvent): void
7
10
  rotate(data: IRotateEvent): void
@@ -1,5 +1,6 @@
1
1
  import { IBoundsData, IMatrixData, ILayoutBoundsData, IPointData } from '../math/IMath'
2
2
  import { ILeaf } from '../display/ILeaf'
3
+ import { IFourNumber } from '../data/IData'
3
4
 
4
5
  export type ILocationType = 'world' | 'page' | 'local' | 'inner'
5
6
  export type IBoundsType = 'content' | 'box' | 'stroke' | 'render'
@@ -73,10 +74,10 @@ export interface ILeafLayout {
73
74
  affectRotation: boolean
74
75
  affectChildrenSort?: boolean
75
76
 
76
- strokeSpread: number
77
+ strokeSpread: IFourNumber
77
78
  strokeBoxSpread: number // 用于生成strokeBounds
78
- renderSpread: number // -1 表示需监视变化,不影响实际renderBounds,目前用在Box上
79
- renderShapeSpread: number
79
+ renderSpread: IFourNumber // -1 表示需监视变化,不影响实际renderBounds,目前用在Box上
80
+ renderShapeSpread: IFourNumber
80
81
 
81
82
  // temp local
82
83
  a: number
package/src/math/IMath.ts CHANGED
@@ -251,6 +251,7 @@ export interface IMatrixWithOptionScaleData extends IMatrixData {
251
251
 
252
252
  export interface IMatrixWithOptionHalfData extends IMatrixData {
253
253
  half?: number // hasHalfPixel, 是否存在半像素(奇数线宽的居中线条),可以半像素为起点绘制,防止模糊
254
+ ignorePixelSnap?: boolean // 是否忽略对齐像素
254
255
  }
255
256
 
256
257
  export interface IMatrixWithBoundsScaleData extends IMatrixWithOptionHalfData, IBoundsData, IScaleData { }
package/types/index.d.ts CHANGED
@@ -188,6 +188,7 @@ interface IMatrixWithOptionScaleData extends IMatrixData {
188
188
  }
189
189
  interface IMatrixWithOptionHalfData extends IMatrixData {
190
190
  half?: number;
191
+ ignorePixelSnap?: boolean;
191
192
  }
192
193
  interface IMatrixWithBoundsScaleData extends IMatrixWithOptionHalfData, IBoundsData, IScaleData {
193
194
  }
@@ -424,6 +425,7 @@ interface IKeepTouchData {
424
425
  from: IPointData;
425
426
  to: IPointData;
426
427
  }
428
+ type IGestureType = 'move' | 'zoom' | 'rotate' | 'none';
427
429
 
428
430
  type ILeafEventerModule = ILeafEventer & ThisType<ILeaf>;
429
431
  interface ILeafEventer {
@@ -908,10 +910,10 @@ interface ILeafLayout {
908
910
  affectScaleOrRotation: boolean;
909
911
  affectRotation: boolean;
910
912
  affectChildrenSort?: boolean;
911
- strokeSpread: number;
913
+ strokeSpread: IFourNumber;
912
914
  strokeBoxSpread: number;
913
- renderSpread: number;
914
- renderShapeSpread: number;
915
+ renderSpread: IFourNumber;
916
+ renderShapeSpread: IFourNumber;
915
917
  a: number;
916
918
  b: number;
917
919
  c: number;
@@ -1214,8 +1216,8 @@ interface ILeafBounds {
1214
1216
  __updateAutoLayout?(): void;
1215
1217
  __updateFlowLayout?(): void;
1216
1218
  __updateNaturalSize?(): void;
1217
- __updateStrokeSpread?(): number;
1218
- __updateRenderSpread?(): number;
1219
+ __updateStrokeSpread?(): IFourNumber;
1220
+ __updateRenderSpread?(): IFourNumber;
1219
1221
  __onUpdateSize?(): void;
1220
1222
  }
1221
1223
 
@@ -1487,7 +1489,7 @@ interface ILeafAttrData {
1487
1489
  around?: IAlign | IUnitPointData;
1488
1490
  lazy?: IBoolean;
1489
1491
  pixelRatio?: INumber;
1490
- renderSpread?: INumber;
1492
+ renderSpread?: IFourNumber;
1491
1493
  path?: IPathCommandData | IPathCommandObject[] | IPathString;
1492
1494
  windingRule?: IWindingRule;
1493
1495
  closed?: IBoolean;
@@ -1563,7 +1565,7 @@ interface ILeafComputedData {
1563
1565
  around?: IAlign | IUnitPointData;
1564
1566
  lazy?: boolean;
1565
1567
  pixelRatio?: number;
1566
- renderSpread?: number;
1568
+ renderSpread?: IFourNumber;
1567
1569
  path?: IPathCommandData;
1568
1570
  windingRule?: IWindingRule;
1569
1571
  closed?: boolean;
@@ -1648,6 +1650,7 @@ interface ILeaf extends ILeafRender, ILeafHit, ILeafBounds, ILeafMatrix, ILeafDa
1648
1650
  __local?: IMatrixWithBoundsData;
1649
1651
  __nowWorld?: IMatrixWithBoundsScaleData;
1650
1652
  __cameraWorld?: IMatrixWithBoundsScaleData;
1653
+ __nowWorldShapeBounds?: IBoundsData;
1651
1654
  readonly __localMatrix: IMatrixData;
1652
1655
  readonly __localBoxBounds: IBoundsData;
1653
1656
  __worldOpacity: number;
@@ -1729,8 +1732,8 @@ interface ILeaf extends ILeafRender, ILeafHit, ILeafBounds, ILeafMatrix, ILeafDa
1729
1732
  __updateAutoLayout(): void;
1730
1733
  __updateFlowLayout(): void;
1731
1734
  __updateNaturalSize(): void;
1732
- __updateStrokeSpread(): number;
1733
- __updateRenderSpread(): number;
1735
+ __updateStrokeSpread(): IFourNumber;
1736
+ __updateRenderSpread(): IFourNumber;
1734
1737
  __onUpdateSize(): void;
1735
1738
  __updateEraser(value?: boolean): void;
1736
1739
  __updateMask(value?: boolean): void;
@@ -1923,9 +1926,11 @@ interface IDropEvent extends IPointerEvent {
1923
1926
  }
1924
1927
  interface IRotateEvent extends IPointerEvent {
1925
1928
  rotation: number;
1929
+ totalRotation?: number;
1926
1930
  }
1927
1931
  interface IZoomEvent extends IPointerEvent {
1928
1932
  scale: number;
1933
+ totalScale?: number;
1929
1934
  }
1930
1935
  interface IMoveEvent extends IDragEvent {
1931
1936
  moveType?: 'drag' | 'move';
@@ -2077,6 +2082,14 @@ interface ITouchConfig {
2077
2082
  }
2078
2083
  interface IMultiTouchConfig {
2079
2084
  disabled?: boolean;
2085
+ singleGesture?: boolean | ISingleGestureConfig;
2086
+ }
2087
+ interface ISingleGestureConfig {
2088
+ move?: number;
2089
+ scale?: number;
2090
+ rotation?: number;
2091
+ count?: number;
2092
+ time?: number;
2080
2093
  }
2081
2094
  interface ICursorConfig {
2082
2095
  stop?: boolean;
@@ -2382,6 +2395,9 @@ interface ICursorRotateMap {
2382
2395
 
2383
2396
  interface ITransformer {
2384
2397
  readonly transforming: boolean;
2398
+ readonly moving: boolean;
2399
+ readonly zooming: boolean;
2400
+ readonly rotating: boolean;
2385
2401
  move(data: IMoveEvent): void;
2386
2402
  zoom(data: IZoomEvent): void;
2387
2403
  rotate(data: IRotateEvent): void;
@@ -2389,4 +2405,4 @@ interface ITransformer {
2389
2405
  destroy(): void;
2390
2406
  }
2391
2407
 
2392
- 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, IBoundsEvent, IBoundsType, IBranch, IBranchRender, IBranchRenderModule, ICachedLeaf, ICanvasAttr, ICanvasCacheOptions, ICanvasContext2D, ICanvasContext2DSettings, ICanvasManager, ICanvasPattern, ICanvasSizeAttr, ICanvasStrokeOptions, ICanvasType, IChildEvent, IClientPointData, IConstraint, IConstraintType, IControl, ICreator, ICubicBezierEasing, ICursorConfig, ICursorRotate, ICursorRotateMap, ICursorType, ICursorTypeMap, ICustomEasingFunction, IDataProcessor, IDataTypeHandle, IDirection, IDirection4, IDragBoundsType, IDragEvent, IDropEvent, IEditSize, IEraserType, IEvent, IEventListener, IEventListenerId, IEventListenerItem, IEventListenerMap, IEventListenerOptions, IEventOption, IEventParams, IEventParamsMap, IEventTarget, IEventer, IExportFileType, IExportImageType, IExportOnCanvasFunction, IExportOptions, IExportResult, IExportResultFunction, IFilter, 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, IKeyCodes, 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, ILeaferMode, ILeaferType, ILeaferTypeCreator, ILeaferTypeFunction, ILeaferTypeList, ILocationType, IMaskType, IMatrix, IMatrixData, IMatrixWithBoundsData, IMatrixWithBoundsScaleData, IMatrixWithLayoutData, IMatrixWithOptionHalfData, IMatrixWithOptionScaleData, IMatrixWithScaleData, IMiniapp, IMiniappSelect, IMiniappSizeView, IMotionPathData, IMoveConfig, IMoveEvent, IMultiTouchConfig, IMultiTouchData, INumber, INumberFunction, INumberMap, IObject, IObjectFunction, IOffsetBoundsData, IOptionSizeData, IPartLayoutConfig, IPath2D, IPathCommandData, IPathCommandObject, IPathCreator, IPathDrawer, IPathString, IPercentData, IPickBottom, IPickOptions, IPickResult, IPicker, IPlatform, IPlugin, IPoint, IPointData, IPointDataFunction, IPointDataMap, IPointGap, IPointerConfig, IPointerEvent, IProgressData, IProgressFunction, IPropertyEvent, IRadiusPointData, IRangeSize, IRenderEvent, IRenderOptions, IRenderer, IRendererConfig, IResizeEvent, IResizeEventListener, IResource, IRotateEvent, IRotationPointData, IScaleData, IScaleFixed, IScaleRotationData, IScreenSizeData, IScrollPointData, ISelector, ISelectorConfig, ISelectorProxy, IShortcutKeyCodes, IShortcutKeys, IShortcutKeysCheck, 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, IValueFunction, IWatchEvent, IWatchEventData, IWatcher, IWatcherConfig, IWheelConfig, IWheelEvent, IWindingRule, IWindingRuleData, IZoomConfig, IZoomEvent, IZoomOptions, IZoomType, IZoomView, InnerId, LCommandData, LineToCommandObject, MCommandData, MoveToCommandObject, PointerType, QCommandData, QuadraticCurveToCommandObject, RectCommandData, RoundRectCommandData, SCommandData, TCommandData, VCommandData, ZCommandData };
2408
+ 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, IBoundsEvent, IBoundsType, IBranch, IBranchRender, IBranchRenderModule, ICachedLeaf, ICanvasAttr, ICanvasCacheOptions, ICanvasContext2D, ICanvasContext2DSettings, ICanvasManager, ICanvasPattern, ICanvasSizeAttr, ICanvasStrokeOptions, ICanvasType, IChildEvent, IClientPointData, IConstraint, IConstraintType, IControl, ICreator, ICubicBezierEasing, ICursorConfig, ICursorRotate, ICursorRotateMap, ICursorType, ICursorTypeMap, ICustomEasingFunction, IDataProcessor, IDataTypeHandle, IDirection, IDirection4, IDragBoundsType, IDragEvent, IDropEvent, IEditSize, IEraserType, IEvent, IEventListener, IEventListenerId, IEventListenerItem, IEventListenerMap, IEventListenerOptions, IEventOption, IEventParams, IEventParamsMap, IEventTarget, IEventer, IExportFileType, IExportImageType, IExportOnCanvasFunction, IExportOptions, IExportResult, IExportResultFunction, IFilter, IFindCondition, IFindMethod, IFinder, IFlowAlign, IFlowAxisAlign, IFlowBoxType, IFlowType, IFlowWrap, IFourNumber, IFromToData, IFunction, IFunctionMap, IGap, IGestureType, IHitCanvas, IHitCanvasConfig, IHitCanvasManager, IHitType, IImageCursor, IImageEvent, IImageManager, IInteraction, IInteractionCanvas, IInteractionConfig, IJSONOptions, IKeepTouchData, IKeyCodes, 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, ILeaferMode, ILeaferType, ILeaferTypeCreator, ILeaferTypeFunction, ILeaferTypeList, ILocationType, IMaskType, IMatrix, IMatrixData, IMatrixWithBoundsData, IMatrixWithBoundsScaleData, IMatrixWithLayoutData, IMatrixWithOptionHalfData, IMatrixWithOptionScaleData, IMatrixWithScaleData, IMiniapp, IMiniappSelect, IMiniappSizeView, IMotionPathData, IMoveConfig, IMoveEvent, IMultiTouchConfig, IMultiTouchData, INumber, INumberFunction, INumberMap, IObject, IObjectFunction, IOffsetBoundsData, IOptionSizeData, IPartLayoutConfig, IPath2D, IPathCommandData, IPathCommandObject, IPathCreator, IPathDrawer, IPathString, IPercentData, IPickBottom, IPickOptions, IPickResult, IPicker, IPlatform, IPlugin, IPoint, IPointData, IPointDataFunction, IPointDataMap, IPointGap, IPointerConfig, IPointerEvent, IProgressData, IProgressFunction, IPropertyEvent, IRadiusPointData, IRangeSize, IRenderEvent, IRenderOptions, IRenderer, IRendererConfig, IResizeEvent, IResizeEventListener, IResource, IRotateEvent, IRotationPointData, IScaleData, IScaleFixed, IScaleRotationData, IScreenSizeData, IScrollPointData, ISelector, ISelectorConfig, ISelectorProxy, IShortcutKeyCodes, IShortcutKeys, IShortcutKeysCheck, ISide, ISingleGestureConfig, 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, IValueFunction, IWatchEvent, IWatchEventData, IWatcher, IWatcherConfig, IWheelConfig, IWheelEvent, IWindingRule, IWindingRuleData, IZoomConfig, IZoomEvent, IZoomOptions, IZoomType, IZoomView, InnerId, LCommandData, LineToCommandObject, MCommandData, MoveToCommandObject, PointerType, QCommandData, QuadraticCurveToCommandObject, RectCommandData, RoundRectCommandData, SCommandData, TCommandData, VCommandData, ZCommandData };