UNPKG

@sphereon/ssi-sdk.data-store

Version:

15 lines 514 B
import { BaseEntity } from 'typeorm'; import { IMetadataEntity } from '../../types'; import { BaseContactEntity } from './BaseContactEntity'; export declare class ContactMetadataItemEntity extends BaseEntity implements IMetadataEntity { id: string; label: string; valueType: string; stringValue?: string; numberValue?: number; dateValue?: Date; boolValue?: boolean; contact: BaseContactEntity; validate(): Promise<void>; } //# sourceMappingURL=ContactMetadataItemEntity.d.ts.map