Browse Source

Merge pull request #18211 from Mugen87/dev26

TS: Clean up.
Michael Herzog 5 years ago
parent
commit
653cf174d5
1 changed files with 3 additions and 1 deletions
  1. 3 1
      src/extras/core/Font.d.ts

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

@@ -1,9 +1,11 @@
+import { Shape } from './Shape';
+
 export class Font {
 export class Font {
 
 
 	constructor( jsondata: any );
 	constructor( jsondata: any );
 
 
 	data: string;
 	data: string;
 
 
-	generateShapes( text: string, size: number ): any[];
+	generateShapes( text: string, size: number ): Shape[];
 
 
 }
 }