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.
33 lines
648 B
33 lines
648 B
export type {
|
|
// From common.ts
|
|
CreateAndSubmitClaimResult,
|
|
GenericCredWrapper,
|
|
GenericVerifiableCredential,
|
|
KeyMeta,
|
|
// Exclude types that are also exported from other files
|
|
// GiveVerifiableCredential,
|
|
// OfferVerifiableCredential,
|
|
// RegisterVerifiableCredential,
|
|
// PlanSummaryRecord,
|
|
// UserInfo,
|
|
} from "./common";
|
|
|
|
export type {
|
|
// From claims.ts
|
|
GiveActionClaim,
|
|
OfferClaim,
|
|
RegisterActionClaim,
|
|
} from "./claims";
|
|
|
|
export type {
|
|
// From records.ts
|
|
PlanSummaryRecord,
|
|
} from "./records";
|
|
|
|
export type {
|
|
// From user.ts
|
|
UserInfo,
|
|
} from "./user";
|
|
|
|
export * from "./limits";
|
|
export * from "./deepLinks";
|
|
|