'use strict'; import { ImporterBase } from '../common/base'; export class TTFFontImporter extends ImporterBase { type: string = 'base'; async import(): Promise { this._3dMeta.ver = '1.0.0'; this._3dMeta.importer = "ttf-font"; return true; } }