import Transformer from "./core/Transformer"; import EntityDefinition from "../model/dataTypes/EntityDefinition"; import FilePath from "../model/dataTypes/FilePath"; /** * This transformer adds an import of the interface type that matches * the data type of the entity. For example, it would add an IExtension * import to the Extension EntityDefintion */ export default class AddInterfaceImportTransformer extends Transformer { readonly baseDir: FilePath; constructor(baseDir: FilePath); transform(input: EntityDefinition): EntityDefinition; } //# sourceMappingURL=AddInterfaceImportTransformer.d.ts.map