import { SchemaJson } from '@drecom/scene-graph-schema'; /** * Importer interface
* It is instantiated by factory
* Constructor is defined as ImporterConstructor
*/ export interface Importer { import(schema: SchemaJson, args: any): any; } /** * Importers' constructor signature for factory. */ export interface ImporterConstructor { new(): any; }