@leafer/interface 1.12.2 → 1.12.4
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 +1 -1
- package/src/app/ILeafer.ts +3 -0
- package/src/file/IExport.ts +7 -1
- package/src/image/ILeaferImage.ts +33 -4
- package/src/index.ts +1 -1
- package/types/index.d.ts +32 -5
package/package.json
CHANGED
package/src/app/ILeafer.ts
CHANGED
package/src/file/IExport.ts
CHANGED
|
@@ -8,12 +8,18 @@ import { IFourNumber } from '../data/IData'
|
|
|
8
8
|
export interface IExportOptions {
|
|
9
9
|
quality?: number
|
|
10
10
|
blob?: boolean
|
|
11
|
+
|
|
11
12
|
scale?: number | IPointData
|
|
12
13
|
size?: number | IOptionSizeData
|
|
14
|
+
|
|
15
|
+
clip?: IBoundsData
|
|
16
|
+
rotation?: number
|
|
17
|
+
skew?: IPointData
|
|
18
|
+
|
|
13
19
|
padding?: IFourNumber
|
|
14
20
|
smooth?: boolean
|
|
15
21
|
pixelRatio?: number
|
|
16
|
-
|
|
22
|
+
|
|
17
23
|
slice?: boolean
|
|
18
24
|
trim?: boolean
|
|
19
25
|
fill?: string
|
|
@@ -2,22 +2,38 @@ import { ICanvasPattern } from '../canvas/ICanvas'
|
|
|
2
2
|
import { IObject } from '../data/IData'
|
|
3
3
|
import { InnerId } from '../event/IEventer'
|
|
4
4
|
import { IExportFileType } from '../file/IFileType'
|
|
5
|
-
import { IBoundsData, IMatrixData, IPointData } from '../math/IMath'
|
|
5
|
+
import { IBoundsData, IMatrixData, IPointData, ISizeData } from '../math/IMath'
|
|
6
6
|
import { ILeaferCanvas } from '../canvas/ILeaferCanvas'
|
|
7
7
|
import { IProgressData } from '../event/IProgress'
|
|
8
8
|
import { IImageCrossOrigin } from '../platform/IPlatform'
|
|
9
9
|
import { ITaskItem } from '../task/ITaskProcessor'
|
|
10
10
|
import { IRangeSize } from '../display/ILeaf'
|
|
11
|
+
import { IFunction } from '../function/IFunction'
|
|
11
12
|
|
|
12
13
|
export interface ILeaferImageConfig {
|
|
13
14
|
url: string
|
|
14
|
-
|
|
15
|
+
lod?: IImageLOD
|
|
15
16
|
format?: IExportFileType
|
|
16
17
|
crossOrigin?: IImageCrossOrigin
|
|
17
18
|
showProgress?: boolean | string // 是否显示进度
|
|
18
19
|
view?: IObject | ILeaferImage | ILeaferCanvas
|
|
19
20
|
}
|
|
20
21
|
|
|
22
|
+
export interface IImageLOD {
|
|
23
|
+
url: string // 'thumb-{level}-{width}-{height}.jpg'
|
|
24
|
+
width: number
|
|
25
|
+
height: number
|
|
26
|
+
thumb?: number
|
|
27
|
+
min?: number
|
|
28
|
+
tile?: IImageTileLOD
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
export interface IImageTileLOD {
|
|
32
|
+
url: string // 'tile-{level}-{index}-{x}-{y}-{width}-{height}.jpg'
|
|
33
|
+
size: number
|
|
34
|
+
min?: number
|
|
35
|
+
}
|
|
36
|
+
|
|
21
37
|
export interface ILeaferImageOnLoaded {
|
|
22
38
|
(image?: ILeaferImage): any
|
|
23
39
|
}
|
|
@@ -52,7 +68,9 @@ export interface ILeaferImageLevel {
|
|
|
52
68
|
level: number
|
|
53
69
|
scale: number | IPointData
|
|
54
70
|
view?: any
|
|
55
|
-
|
|
71
|
+
task?: ITaskItem
|
|
72
|
+
wait?: IFunction[]
|
|
73
|
+
|
|
56
74
|
slice?: ILeaferImageSliceData
|
|
57
75
|
use?: number // 引用次数
|
|
58
76
|
}
|
|
@@ -60,6 +78,8 @@ export interface ILeaferImageLevel {
|
|
|
60
78
|
export interface ILeaferImage {
|
|
61
79
|
readonly innerId: InnerId
|
|
62
80
|
readonly url: string
|
|
81
|
+
lod?: IImageLOD
|
|
82
|
+
readonly crossOrigin: IImageCrossOrigin
|
|
63
83
|
|
|
64
84
|
view: any
|
|
65
85
|
width: number
|
|
@@ -76,22 +96,31 @@ export interface ILeaferImage {
|
|
|
76
96
|
isPlacehold?: boolean // 是否显示占位符,一般在加载100ms后自动判断
|
|
77
97
|
|
|
78
98
|
largeThumb?: ILeaferImageLevel
|
|
99
|
+
thumb?: ILeaferImageLevel
|
|
79
100
|
levels?: ILeaferImageLevel[]
|
|
80
101
|
levelsRange?: IRangeSize
|
|
81
102
|
minLevel?: number
|
|
103
|
+
loadId?: any
|
|
82
104
|
|
|
83
105
|
progress?: IProgressData // 加载进度
|
|
84
106
|
|
|
85
107
|
use: number // 引用次数
|
|
86
108
|
config: ILeaferImageConfig
|
|
87
109
|
|
|
88
|
-
load(onSuccess?: ILeaferImageOnLoaded, onError?: ILeaferImageOnError): number
|
|
110
|
+
load(onSuccess?: ILeaferImageOnLoaded, onError?: ILeaferImageOnError, thumbSize?: ISizeData): number
|
|
89
111
|
unload(index: number, stopEvent?: boolean): void
|
|
90
112
|
getFull(filters?: IObject): any
|
|
91
113
|
getCanvas(width: number, height: number, opacity?: number, filters?: IObject, xGap?: number, yGap?: number, smooth?: boolean): any
|
|
92
114
|
getPattern(canvas: any, repeat: string | null, transform?: IMatrixData, paint?: IObject): ICanvasPattern
|
|
93
115
|
|
|
116
|
+
getLoadUrl(thumbSize?: ISizeData): string
|
|
117
|
+
setThumbView(view: number): void
|
|
118
|
+
getThumbSize(lod?: IImageLOD): ISizeData
|
|
119
|
+
|
|
120
|
+
getMinLevel(): number
|
|
121
|
+
getLevelData(level: number, width?: number, height?: number): ILeaferImageLevel
|
|
94
122
|
clearLevels(checkUse?: boolean): void
|
|
123
|
+
|
|
95
124
|
destroy(): void
|
|
96
125
|
}
|
|
97
126
|
|
package/src/index.ts
CHANGED
|
@@ -40,7 +40,7 @@ export { IMotionPathData } from './path/IPathData'
|
|
|
40
40
|
export { IWindingRule, ICanvasContext2D, ICanvasContext2DSettings, ITextMetrics, IPath2D, ICanvasPattern } from './canvas/ICanvas'
|
|
41
41
|
export { CanvasPathCommand, IPathCommandData, MCommandData, HCommandData, VCommandData, LCommandData, CCommandData, SCommandData, QCommandData, TCommandData, ZCommandData, ACommandData, RectCommandData, RoundRectCommandData, EllipseCommandData, ArcCommandData, ArcToCommandData, MoveToCommandObject, LineToCommandObject, BezierCurveToCommandObject, QuadraticCurveToCommandObject, IPathCommandObject, IPathCommandNodeBase, MoveToCommandNode, LineToCommandNode, BezierCurveToCommandNode, ClosePathCommandNode, IPathCommandNode, PathNodeHandleType, PathNodeHandleName, IPathNodeBase } from './path/IPathCommand'
|
|
42
42
|
|
|
43
|
-
export { ILeaferImage, ILeaferImageConfig, ILeaferImageSliceData, ILeaferImageSlice, ILeaferImageLevel, ILeaferImageOnLoaded, ILeaferImageOnError, ILeaferImageCacheCanvas, ILeaferImagePatternPaint } from './image/ILeaferImage'
|
|
43
|
+
export { ILeaferImage, ILeaferImageConfig, IImageLOD, IImageTileLOD, ILeaferImageSliceData, ILeaferImageSlice, ILeaferImageLevel, ILeaferImageOnLoaded, ILeaferImageOnError, ILeaferImageCacheCanvas, ILeaferImagePatternPaint } from './image/ILeaferImage'
|
|
44
44
|
export { IResource } from './file/IResource'
|
|
45
45
|
export { IExportFileType, IExportImageType } from './file/IFileType'
|
|
46
46
|
export { IExportOptions, IJSONOptions, IExportResult, IExportResultFunction, IExportOnCanvasFunction } from './file/IExport'
|
package/types/index.d.ts
CHANGED
|
@@ -992,10 +992,12 @@ interface IExportOptions {
|
|
|
992
992
|
blob?: boolean;
|
|
993
993
|
scale?: number | IPointData;
|
|
994
994
|
size?: number | IOptionSizeData;
|
|
995
|
+
clip?: IBoundsData;
|
|
996
|
+
rotation?: number;
|
|
997
|
+
skew?: IPointData;
|
|
995
998
|
padding?: IFourNumber;
|
|
996
999
|
smooth?: boolean;
|
|
997
1000
|
pixelRatio?: number;
|
|
998
|
-
clip?: IBoundsData;
|
|
999
1001
|
slice?: boolean;
|
|
1000
1002
|
trim?: boolean;
|
|
1001
1003
|
fill?: string;
|
|
@@ -2018,12 +2020,25 @@ interface ITaskOptions {
|
|
|
2018
2020
|
|
|
2019
2021
|
interface ILeaferImageConfig {
|
|
2020
2022
|
url: string;
|
|
2021
|
-
|
|
2023
|
+
lod?: IImageLOD;
|
|
2022
2024
|
format?: IExportFileType;
|
|
2023
2025
|
crossOrigin?: IImageCrossOrigin;
|
|
2024
2026
|
showProgress?: boolean | string;
|
|
2025
2027
|
view?: IObject | ILeaferImage | ILeaferCanvas;
|
|
2026
2028
|
}
|
|
2029
|
+
interface IImageLOD {
|
|
2030
|
+
url: string;
|
|
2031
|
+
width: number;
|
|
2032
|
+
height: number;
|
|
2033
|
+
thumb?: number;
|
|
2034
|
+
min?: number;
|
|
2035
|
+
tile?: IImageTileLOD;
|
|
2036
|
+
}
|
|
2037
|
+
interface IImageTileLOD {
|
|
2038
|
+
url: string;
|
|
2039
|
+
size: number;
|
|
2040
|
+
min?: number;
|
|
2041
|
+
}
|
|
2027
2042
|
interface ILeaferImageOnLoaded {
|
|
2028
2043
|
(image?: ILeaferImage): any;
|
|
2029
2044
|
}
|
|
@@ -2052,13 +2067,16 @@ interface ILeaferImageLevel {
|
|
|
2052
2067
|
level: number;
|
|
2053
2068
|
scale: number | IPointData;
|
|
2054
2069
|
view?: any;
|
|
2055
|
-
|
|
2070
|
+
task?: ITaskItem;
|
|
2071
|
+
wait?: IFunction[];
|
|
2056
2072
|
slice?: ILeaferImageSliceData;
|
|
2057
2073
|
use?: number;
|
|
2058
2074
|
}
|
|
2059
2075
|
interface ILeaferImage {
|
|
2060
2076
|
readonly innerId: InnerId;
|
|
2061
2077
|
readonly url: string;
|
|
2078
|
+
lod?: IImageLOD;
|
|
2079
|
+
readonly crossOrigin: IImageCrossOrigin;
|
|
2062
2080
|
view: any;
|
|
2063
2081
|
width: number;
|
|
2064
2082
|
height: number;
|
|
@@ -2070,17 +2088,24 @@ interface ILeaferImage {
|
|
|
2070
2088
|
loading: boolean;
|
|
2071
2089
|
isPlacehold?: boolean;
|
|
2072
2090
|
largeThumb?: ILeaferImageLevel;
|
|
2091
|
+
thumb?: ILeaferImageLevel;
|
|
2073
2092
|
levels?: ILeaferImageLevel[];
|
|
2074
2093
|
levelsRange?: IRangeSize;
|
|
2075
2094
|
minLevel?: number;
|
|
2095
|
+
loadId?: any;
|
|
2076
2096
|
progress?: IProgressData;
|
|
2077
2097
|
use: number;
|
|
2078
2098
|
config: ILeaferImageConfig;
|
|
2079
|
-
load(onSuccess?: ILeaferImageOnLoaded, onError?: ILeaferImageOnError): number;
|
|
2099
|
+
load(onSuccess?: ILeaferImageOnLoaded, onError?: ILeaferImageOnError, thumbSize?: ISizeData): number;
|
|
2080
2100
|
unload(index: number, stopEvent?: boolean): void;
|
|
2081
2101
|
getFull(filters?: IObject): any;
|
|
2082
2102
|
getCanvas(width: number, height: number, opacity?: number, filters?: IObject, xGap?: number, yGap?: number, smooth?: boolean): any;
|
|
2083
2103
|
getPattern(canvas: any, repeat: string | null, transform?: IMatrixData, paint?: IObject): ICanvasPattern;
|
|
2104
|
+
getLoadUrl(thumbSize?: ISizeData): string;
|
|
2105
|
+
setThumbView(view: number): void;
|
|
2106
|
+
getThumbSize(lod?: IImageLOD): ISizeData;
|
|
2107
|
+
getMinLevel(): number;
|
|
2108
|
+
getLevelData(level: number, width?: number, height?: number): ILeaferImageLevel;
|
|
2084
2109
|
clearLevels(checkUse?: boolean): void;
|
|
2085
2110
|
destroy(): void;
|
|
2086
2111
|
}
|
|
@@ -2360,6 +2385,8 @@ interface ILeaferAttrData {
|
|
|
2360
2385
|
readonly cursorPoint: IPointData;
|
|
2361
2386
|
readonly clientBounds: IBoundsData;
|
|
2362
2387
|
leafs: number;
|
|
2388
|
+
isPullDown?: boolean;
|
|
2389
|
+
isReachDottom?: boolean;
|
|
2363
2390
|
__eventIds: IEventListenerId[];
|
|
2364
2391
|
__nextRenderWait: IFunction[];
|
|
2365
2392
|
init(userConfig?: ILeaferConfig, parentApp?: IAppBase): void;
|
|
@@ -2493,4 +2520,4 @@ interface ITransformer {
|
|
|
2493
2520
|
}
|
|
2494
2521
|
|
|
2495
2522
|
export { PathNodeHandleType };
|
|
2496
|
-
export type { ACommandData, ArcCommandData, ArcToCommandData, BezierCurveToCommandNode, BezierCurveToCommandObject, CCommandData, CanvasPathCommand, ClosePathCommandNode, 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, IImageCrossOrigin, 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, ILeaferImageLevel, ILeaferImageOnError, ILeaferImageOnLoaded, ILeaferImagePatternPaint, ILeaferImageSlice, ILeaferImageSliceData, 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, IPathCommandNode, IPathCommandNodeBase, IPathCommandObject, IPathCreator, IPathDrawer, IPathNodeBase, 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, ITouchEvent, 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, LineToCommandNode, LineToCommandObject, MCommandData, MoveToCommandNode, MoveToCommandObject, PathNodeHandleName, PointerType, QCommandData, QuadraticCurveToCommandObject, RectCommandData, RoundRectCommandData, SCommandData, TCommandData, VCommandData, ZCommandData };
|
|
2523
|
+
export type { ACommandData, ArcCommandData, ArcToCommandData, BezierCurveToCommandNode, BezierCurveToCommandObject, CCommandData, CanvasPathCommand, ClosePathCommandNode, 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, IImageCrossOrigin, IImageCursor, IImageEvent, IImageLOD, IImageManager, IImageTileLOD, 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, ILeaferImageLevel, ILeaferImageOnError, ILeaferImageOnLoaded, ILeaferImagePatternPaint, ILeaferImageSlice, ILeaferImageSliceData, 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, IPathCommandNode, IPathCommandNodeBase, IPathCommandObject, IPathCreator, IPathDrawer, IPathNodeBase, 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, ITouchEvent, 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, LineToCommandNode, LineToCommandObject, MCommandData, MoveToCommandNode, MoveToCommandObject, PathNodeHandleName, PointerType, QCommandData, QuadraticCurveToCommandObject, RectCommandData, RoundRectCommandData, SCommandData, TCommandData, VCommandData, ZCommandData };
|