Explorar o código

Merge pull request #18204 from frading/typescript_font_definition

remove division parameter for Font.generateShapes in typescript definition file
Michael Herzog %!s(int64=5) %!d(string=hai) anos
pai
achega
e516dbbc08
Modificáronse 1 ficheiros con 1 adicións e 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[];
 
 }