From cc6a2670c8212fa65a68bcb467fb6a2b979fa573 Mon Sep 17 00:00:00 2001 From: syuilo Date: Wed, 1 Feb 2023 11:32:12 +0900 Subject: [PATCH] Update misskey-js.api.md --- etc/misskey-js.api.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/etc/misskey-js.api.md b/etc/misskey-js.api.md index bc3dbcacc..a2cbb0c2e 100644 --- a/etc/misskey-js.api.md +++ b/etc/misskey-js.api.md @@ -2187,6 +2187,9 @@ type FetchLike = (input: string, init?: { body?: string; credentials?: RequestCredentials; cache?: RequestCache; + headers: { + [key in string]: string; + }; }) => Promise<{ status: number; json(): Promise;