Browse Source

TS: Clean up.

Mugen87 5 years ago
parent
commit
2130eddead
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 {
 
 	constructor( jsondata: any );
 
 	data: string;
 
-	generateShapes( text: string, size: number ): any[];
+	generateShapes( text: string, size: number ): Shape[];
 
 }