import { PropertyName } from '@dipscope/type-manager'; import { Cursor } from './cursor'; /** * Type representing an entity. * * @type {Entity} */ export type Entity = Record & { /** * Optional cursor used for cursor based pagination. * * @type {Cursor} */ cursor?: Cursor; }; //# sourceMappingURL=entity.d.ts.map