Browse Source
- 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.pull/137/head
2 changed files with 35 additions and 13 deletions
@ -1,7 +1,37 @@ |
|||
export * from "./claims"; |
|||
export * from "./claims-result"; |
|||
export * from "./common"; |
|||
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 "./records"; |
|||
export * from "./user"; |
|||
export * from "./deepLinks"; |
|||
|
Loading…
Reference in new issue