forked from jsnbuchanan/crowd-funder-for-time-pwa
- Add name, description, and agent as optional properties to GenericVerifiableCredential - Improve type safety and IntelliSense for common claim properties - Maintain backward compatibility with existing code - Reduce need for type assertions when accessing claim properties
37 lines
734 B
TypeScript
37 lines
734 B
TypeScript
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";
|
|
export * from "./common";
|
|
export * from "./claims-result";
|
|
export * from "./records";
|