We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 056f65b commit 1918b32Copy full SHA for 1918b32
src/shapes/shape.ts
@@ -217,7 +217,7 @@ export default abstract class Shape extends Observable {
217
@numberProperty({ converter: parseCap }) strokeCap: Cap;
218
@numberProperty({ converter: parseJoin }) strokeJoin: Join;
219
@numberProperty textSize: number;
220
- @numberProperty({ converter: parseXfermode }) xfermode: number;
+ @numberProperty({ converter: parseXfermode }) xfermode: PorterDuffXfermode;
221
// alias for textSize
222
@numberProperty({ paintSetterName: 'setTextSize' }) fontSize: number;
223
@booleanProperty({ paintGetterName: 'isAntiAlias', paintSetterName: 'setAntiAlias' }) antiAlias: boolean;
0 commit comments