Skip to content

Commit

Permalink
style: prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
panva committed Jan 9, 2024
1 parent 533f033 commit 187b2fd
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1713,7 +1713,15 @@ export async function protectedResourceRequest(
method: 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH' | string,
url: URL,
headers: Headers,
body?: ReadableStream | Blob | ArrayBufferView | ArrayBuffer | FormData | URLSearchParams | string | null,
body?:
| ReadableStream
| Blob
| ArrayBufferView
| ArrayBuffer
| FormData
| URLSearchParams
| string
| null,
options?: ProtectedResourceRequestOptions,
): Promise<Response> {
if (!validateString(accessToken)) {
Expand Down

0 comments on commit 187b2fd

Please sign in to comment.