import { Entity } from './entity'; import { EntityCollection } from './entity-collection'; /** * Type to describe entity collection and similar types like * array which can be used instead. * * @type {EntityCollectionLike} */ export type EntityCollectionLike = EntityCollection | Array; //# sourceMappingURL=entity-collection-like.d.ts.map