Skip to content

Commit

Permalink
fix: export required interfaces (#19)
Browse files Browse the repository at this point in the history
* fix: export required interfaces

Signed-off-by: amitpadmani-awts <amit.padmani@ayanworks.com>

* fix: import issue for GenericRecord

Signed-off-by: amitpadmani-awts <amit.padmani@ayanworks.com>

* fix: lint issues

Signed-off-by: amitpadmani-awts <amit.padmani@ayanworks.com>

---------

Signed-off-by: amitpadmani-awts <amit.padmani@ayanworks.com>
  • Loading branch information
amitpadmani-awts authored Jan 29, 2024
1 parent f42a9fe commit 2707671
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions packages/ssi/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
import type { InitConfig } from '@aries-framework/core'
import type {
GenericRecord,
SaveGenericRecordOption
} from '@aries-framework/core/build/modules/generic-records/repository/GenericRecord'

// Anoncreds
import {
Expand Down Expand Up @@ -66,7 +70,13 @@ import {
ConnectionsModule,
Agent,
BasicMessageRepository,
AriesFrameworkError
AriesFrameworkError,
ConnectionStateChangedEvent,
CredentialStateChangedEvent,
ProofStateChangedEvent,
ConnectionEventTypes,
CredentialEventTypes,
ProofEventTypes
} from '@aries-framework/core'
import {
GetCredentialsForRequestReturn,
Expand Down Expand Up @@ -132,7 +142,15 @@ export {
ConnectionsModule,
Agent,
BasicMessageRepository,
AriesFrameworkError
AriesFrameworkError,
ConnectionStateChangedEvent,
CredentialStateChangedEvent,
ProofStateChangedEvent,
ConnectionEventTypes,
CredentialEventTypes,
ProofEventTypes,
GenericRecord,
SaveGenericRecordOption
}
// Anoncreds
export {
Expand Down

0 comments on commit 2707671

Please sign in to comment.