ag-psd 20.2.2 → 21.0.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/src/psd.ts CHANGED
@@ -446,7 +446,7 @@ export type BooleanOperation = 'exclude' | 'combine' | 'subtract' | 'intersect';
446
446
 
447
447
  export interface BezierPath {
448
448
  open: boolean;
449
- operation: BooleanOperation;
449
+ operation?: BooleanOperation;
450
450
  knots: BezierKnot[];
451
451
  fillRule: 'even-odd' | 'non-zero';
452
452
  }