import { IEntity } from "./entity"; /** An Entity with a version. */ export interface IEntityWithVersion extends IEntity { /** Gets or sets the version of the entity. */ version?: number; } //# sourceMappingURL=entity_with_version.d.ts.map