Skip to content

Commit

Permalink
refactor: omit LocalJWKSet export since it's no longer needed for Rem…
Browse files Browse the repository at this point in the history
…oteJWKSet
  • Loading branch information
panva committed Aug 26, 2024
1 parent 32993ca commit c502731
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/jwks/local.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,7 @@ function clone<T>(obj: T): T {
return JSON.parse(JSON.stringify(obj))
}

/** @private */
export class LocalJWKSet<KeyLikeType extends KeyLike = KeyLike> {
class LocalJWKSet<KeyLikeType extends KeyLike = KeyLike> {
private _jwks?: JSONWebKeySet

private _cached: WeakMap<JWK, Cache<KeyLikeType>> = new WeakMap()
Expand Down

0 comments on commit c502731

Please sign in to comment.