'use strict'; import { ImporterBase } from '../common/base'; export class TsxImporter extends ImporterBase { type: string = 'base'; async import(): Promise { return true; } }