UNPKG

three

Version:

JavaScript 3D library

17 lines (10 loc) 208 B
import { Shape } from './Shape'; export class Font { constructor( jsondata: any ); /** * @default 'Font' */ type: string; data: string; generateShapes( text: string, size: number ): Shape[]; }