|
@@ -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[];
|
|
|
|
|
|
}
|
|
}
|