Skip to content

Commit

Permalink
White space
Browse files Browse the repository at this point in the history
  • Loading branch information
vlad-ignatov committed Jul 21, 2022
1 parent 2f155a1 commit f3a3c85
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions src/smart.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,8 @@ function getSecurityExtensionsFromConformanceStatement(baseUrl = "/", requestOpt
*/
export function getSecurityExtensions(baseUrl = "/"): Promise<fhirclient.OAuthSecurityExtensions>
{
return getSecurityExtensionsFromWellKnownJson(baseUrl).catch(
() => getSecurityExtensionsFromConformanceStatement(baseUrl)
);
return getSecurityExtensionsFromWellKnownJson(baseUrl)
.catch(() => getSecurityExtensionsFromConformanceStatement(baseUrl));
}

/**
Expand Down
4 changes: 2 additions & 2 deletions src/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -538,8 +538,8 @@ declare namespace fhirclient {

/**
* If you have registered a confidential client, you should pass your
* `clientPrivateJwk` here. **Note: ONLY use this on the server**, as the
* browsers are considered incapable of keeping a secret.
* `clientPrivateJwk` here. **Note: ONLY use this on the server**, as
* the browsers are considered incapable of keeping a secret.
*/
clientPrivateJwk?: { kid: string; kty: string, [k: string]: string } & (
{kty: "EC", alg: "ES384", crv: "P-384"} |
Expand Down

0 comments on commit f3a3c85

Please sign in to comment.