You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
749 B
37 lines
749 B
export type {
|
|
// From common.ts
|
|
GenericCredWrapper,
|
|
GenericVerifiableCredential,
|
|
KeyMeta,
|
|
// Exclude types that are also exported from other files
|
|
// GiveVerifiableCredential,
|
|
// OfferVerifiableCredential,
|
|
// RegisterVerifiableCredential,
|
|
// PlanSummaryRecord,
|
|
// UserInfo,
|
|
} from "./common";
|
|
|
|
export type {
|
|
// From claims.ts
|
|
GiveVerifiableCredential,
|
|
OfferVerifiableCredential,
|
|
RegisterVerifiableCredential,
|
|
} from "./claims";
|
|
|
|
export type {
|
|
// From claims-result.ts
|
|
CreateAndSubmitClaimResult,
|
|
} from "./claims-result";
|
|
|
|
export type {
|
|
// From records.ts
|
|
PlanSummaryRecord,
|
|
} from "./records";
|
|
|
|
export type {
|
|
// From user.ts
|
|
UserInfo,
|
|
} from "./user";
|
|
|
|
export * from "./limits";
|
|
export * from "./deepLinks";
|
|
|