Font.d.ts 162 B

1234567891011
  1. import { Shape } from './Shape';
  2. export class Font {
  3. constructor( jsondata: any );
  4. data: string;
  5. generateShapes( text: string, size: number ): Shape[];
  6. }