@0xpolygonid/js-sdk
Version:
SDK to work with Polygon ID
10 lines • 361 B
TypeScript
import { KMS } from '../../kms';
export interface KeyResolver {
resolvePrivateKeyByKid: (kid: string) => Promise<CryptoKey>;
}
export declare class DefaultKMSKeyResolver implements KeyResolver {
private readonly kms;
constructor(kms: KMS);
resolvePrivateKeyByKid: (kid: string) => Promise<CryptoKey>;
}
//# sourceMappingURL=key-resolver.d.ts.map