-
Notifications
You must be signed in to change notification settings - Fork 136
Expand file tree
/
Copy pathindex.ts
More file actions
24 lines (24 loc) · 1.08 KB
/
index.ts
File metadata and controls
24 lines (24 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/**
* Provides {@link @veramo/core#Agent} implementation and defines {@link @veramo/core#IResolver}, {@link @veramo/core#IDIDManager}, {@link @veramo/core#IKeyManager}, {@link @veramo/core#IDataStore}, {@link @veramo/core#IMessageHandler} plugin interfaces
*
* @packageDocumentation
*/
export { Agent, createAgent, IAgentOptions } from './agent.js'
export { ValidationError } from './validator.js'
export { CoreEvents } from './coreEvents.js'
export * from './types/IAgent.js'
export * from './types/ICredentialStatus.js'
export * from './types/ICredentialStatusManager.js'
export * from './types/ICredentialStatusVerifier.js'
export * from './types/ICredentialStatusRouter.js'
export * from './types/IDataStore.js'
export * from './types/IDataStoreORM.js'
export * from './types/IIdentifier.js'
export * from './types/IDIDManager.js'
export * from './types/IKeyManager.js'
export * from './types/IMessage.js'
export * from './types/IMessageHandler.js'
export * from './types/IResolver.js'
export * from './types/IError.js'
export * from './types/IVerifyResult.js'
export * from './types/vc-data-model.js'