import Preprocessor from "./Preprocessor"; import EntityCollection from "../model/dataTypes/EntityCollection"; import EntityDefinition from "../model/dataTypes/EntityDefinition"; import Predicate from "../collectionUtils/core/Predicate"; import Transformer from "../collectionUtils/core/Transformer"; /** * This EntityCollection Preprocessor contains preprocessing * logic common to all types of model generation */ export default class BaseProcessor implements Preprocessor { blacklistPredicate: Predicate; addResourceTypeTransformer: Transformer; constructor(); preprocess(entityCollection: EntityCollection): EntityCollection; } //# sourceMappingURL=BasePreprocessor.d.ts.map