node-nlp
Version:
Library for NLU (Natural Language Understanding) done in Node.js
14 lines (13 loc) • 326 B
TypeScript
export declare class OpenIdMetadata {
private url;
private lastUpdated;
private keys;
constructor(url: string);
getKey(keyId: string): Promise<IOpenIdMetadataKey | null>;
private refreshCache;
private findKey;
}
export interface IOpenIdMetadataKey {
key: string;
endorsements?: string[];
}