(optional = true)
| 97 | public getRevocationEndpoint(optional: false): Promise<string>; |
| 98 | public getRevocationEndpoint(optional?: true): Promise<string | undefined>; |
| 99 | public getRevocationEndpoint(optional = true): Promise<string | undefined> { |
| 100 | return this._getMetadataProperty("revocation_endpoint", optional) as Promise<string | undefined>; |
| 101 | } |
| 102 | |
| 103 | public getKeysEndpoint(optional: false): Promise<string>; |
| 104 | public getKeysEndpoint(optional?: true): Promise<string | undefined>; |
no test coverage detected