Browse Source

TS: Clean up.

Mugen87 5 năm trước cách đây
mục cha
commit
2130eddead
1 tập tin đã thay đổi với 3 bổ sung1 xóa
  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[];
 
 }