forked from jsnbuchanan/crowd-funder-for-time-pwa
- Remove unused imports: - DIDResolutionResult from did-resolver - sha256 from ethereum-cryptography/sha256.js - Remove unused parameters from verifyJwtP256 and verifyJwtWebCrypto: - credIdHex - clientDataJsonBase64Url - credId This change improves code cleanliness by removing unused code while maintaining the core passkey authentication functionality.
38 lines
749 B
TypeScript
38 lines
749 B
TypeScript
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";
|