Explorar el Código

remove division parameter for Font.generateShapes in typescript definition file

Guillaume Fradin hace 5 años
padre
commit
6820de1f6c
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/extras/core/Font.d.ts

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

@@ -4,6 +4,6 @@ export class Font {
 
 	data: string;
 
-	generateShapes( text: string, size: number, divisions: number ): any[];
+	generateShapes( text: string, size: number ): any[];
 
 }