Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
kael-shipman committed Jan 22, 2024
1 parent e901f22 commit ea994f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libs/ts-simple-http-client-fetch/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ export interface SimpleFetchRequestConfig extends SimpleHttpClientRequestConfig
* Policy specifying whether to include credentials. See
* https://developer.mozilla.org/en-US/docs/Web/API/Request/Request#credentials
*/
credentials?: "include" | "omit" | "same-origin";
credentials?: 'include' | 'omit' | 'same-origin';
/**
* See https://developer.mozilla.org/en-US/docs/Web/API/Request/Request#mode
*/
mode?: "cors" | "navigate" | "no-cors" | "same-origin";
mode?: 'cors' | 'navigate' | 'no-cors' | 'same-origin';
}

/**
Expand Down

0 comments on commit ea994f8

Please sign in to comment.