(optional = true)
| 83 | public getTokenEndpoint(optional: false): Promise<string>; |
| 84 | public getTokenEndpoint(optional?: true): Promise<string | undefined>; |
| 85 | public getTokenEndpoint(optional = true): Promise<string | undefined> { |
| 86 | return this._getMetadataProperty("token_endpoint", optional) as Promise<string | undefined>; |
| 87 | } |
| 88 | |
| 89 | public getCheckSessionIframe(): Promise<string | undefined> { |
| 90 | return this._getMetadataProperty("check_session_iframe", true) as Promise<string | undefined>; |
no test coverage detected