azure-ad-verify-token-commonjs
Version:
Verify JWT issued by Azure Active Directory B2C.
20 lines (19 loc) • 477 B
TypeScript
import { Config } from './interfaces.js';
/**
* Default value for `cacheLifetime`.
*/
export declare const DEFAULT_CACHE_LIFETIME: number;
/**
* Set config properties.
*
* @param config Object of properties to set.
*/
export declare function setConfig(overrides: Config): Config;
/**
* Get current configuration.
*/
export declare function getConfig(): Config;
/**
* Reset configuration to defaults.
*/
export declare function resetConfig(): void;