Forráskód Böngészése

ShapePath.d.ts: Fix declaration of .toShapes().

Mugen87 5 éve
szülő
commit
c5a3f551fb
1 módosított fájl, 1 hozzáadás és 1 törlés
  1. 1 1
      src/extras/core/ShapePath.d.ts

+ 1 - 1
src/extras/core/ShapePath.d.ts

@@ -20,6 +20,6 @@ export class ShapePath {
 		aY: number
 		aY: number
 	): void;
 	): void;
 	splineThru( pts: Vector2[] ): void;
 	splineThru( pts: Vector2[] ): void;
-	toShapes( isCCW: boolean, noHoles: any ): Shape[];
+	toShapes( isCCW: boolean, noHoles?: boolean ): Shape[];
 
 
 }
 }