Skip to content

Commit c502731

Browse files
committed
refactor: omit LocalJWKSet export since it's no longer needed for RemoteJWKSet
1 parent 32993ca commit c502731

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/jwks/local.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,7 @@ function clone<T>(obj: T): T {
5757
return JSON.parse(JSON.stringify(obj))
5858
}
5959

60-
/** @private */
61-
export class LocalJWKSet<KeyLikeType extends KeyLike = KeyLike> {
60+
class LocalJWKSet<KeyLikeType extends KeyLike = KeyLike> {
6261
private _jwks?: JSONWebKeySet
6362

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

0 commit comments

Comments
 (0)