import { EventEmitter, InjectionSymbols, inject, injectable, Repository, StorageService } from '@aries-framework/core' import { SdJwtVcRecord } from './SdJwtVcRecord' @injectable() export class SdJwtVcRepository extends Repository { public constructor( @inject(InjectionSymbols.StorageService) storageService: StorageService, eventEmitter: EventEmitter ) { super(SdJwtVcRecord, storageService, eventEmitter) } }