16 lines
481 B
TypeScript
16 lines
481 B
TypeScript
![]() |
/** @internal */
|
||
|
export type AuthorityMetadataEntity = {
|
||
|
aliases: Array<string>;
|
||
|
preferred_cache: string;
|
||
|
preferred_network: string;
|
||
|
canonical_authority: string;
|
||
|
authorization_endpoint: string;
|
||
|
token_endpoint: string;
|
||
|
end_session_endpoint?: string;
|
||
|
issuer: string;
|
||
|
aliasesFromNetwork: boolean;
|
||
|
endpointsFromNetwork: boolean;
|
||
|
expiresAt: number;
|
||
|
jwks_uri: string;
|
||
|
};
|
||
|
//# sourceMappingURL=AuthorityMetadataEntity.d.ts.map
|