@leafer/interface 1.6.5 → 1.6.7
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
|
@@ -138,7 +138,7 @@ interface ICanvasMethod {
|
|
|
138
138
|
fillWorld(bounds: IBoundsData, color: string | object, blendMode?: string): void
|
|
139
139
|
strokeWorld(bounds: IBoundsData, color: string | object, blendMode?: string): void
|
|
140
140
|
clipWorld(bounds: IBoundsData, ceilPixel?: boolean): void
|
|
141
|
-
clipUI(ruleData
|
|
141
|
+
clipUI(ruleData: IWindingRuleData): void
|
|
142
142
|
|
|
143
143
|
clearWorld(bounds: IBoundsData, ceilPixel?: boolean): void
|
|
144
144
|
clear(): void
|
package/types/index.d.ts
CHANGED
|
@@ -1066,7 +1066,7 @@ interface ICanvasMethod {
|
|
|
1066
1066
|
fillWorld(bounds: IBoundsData, color: string | object, blendMode?: string): void;
|
|
1067
1067
|
strokeWorld(bounds: IBoundsData, color: string | object, blendMode?: string): void;
|
|
1068
1068
|
clipWorld(bounds: IBoundsData, ceilPixel?: boolean): void;
|
|
1069
|
-
clipUI(ruleData
|
|
1069
|
+
clipUI(ruleData: IWindingRuleData): void;
|
|
1070
1070
|
clearWorld(bounds: IBoundsData, ceilPixel?: boolean): void;
|
|
1071
1071
|
clear(): void;
|
|
1072
1072
|
}
|
|
@@ -1132,6 +1132,7 @@ interface IRenderOptions {
|
|
|
1132
1132
|
matrix?: IMatrixWithScaleData;
|
|
1133
1133
|
inCamera?: boolean;
|
|
1134
1134
|
dimOpacity?: number;
|
|
1135
|
+
exporting?: boolean;
|
|
1135
1136
|
}
|
|
1136
1137
|
interface IRendererConfig {
|
|
1137
1138
|
usePartRender?: boolean;
|