UNPKG

@sphereon/ssi-sdk.data-store

Version:

13 lines 461 B
import { BaseEntity } from 'typeorm'; import { CorrelationIdentifierType } from '../../types'; import { IdentityEntity } from './IdentityEntity'; export declare class CorrelationIdentifierEntity extends BaseEntity { id: string; type: CorrelationIdentifierType; correlationId: string; ownerId?: string; tenantId?: string; identity: IdentityEntity; validate(): Promise<void>; } //# sourceMappingURL=CorrelationIdentifierEntity.d.ts.map