Skip to content

Commit

Permalink
fix(Flowtype): add credentials in Fetch Options
Browse files Browse the repository at this point in the history
Update definitions for credentials in FetchOpts Definition
  • Loading branch information
nicholas-l authored and nodkz committed Nov 3, 2018
1 parent 7267455 commit 84b3361
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/definition.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export type FetchOpts = {
method: 'POST' | 'GET',
headers: { [name: string]: string },
body: string | FormData,
credentials: | 'omit' | 'same-origin' | 'include',
};

export type RRNLRequestObject =
Expand Down

0 comments on commit 84b3361

Please sign in to comment.