import { Entity } from './entity'; /** * Represents a callback function over entity. It is expected to perform some action inside * such a function. * * @type {EntityCallbackFn} */ export type EntityCallbackFn = (entity: TEntity, index: number, entities: ReadonlyArray) => void; //# sourceMappingURL=entity-callback-fn.d.ts.map