summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2023-02-01 11:32:12 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2023-02-01 11:32:12 +0900
commitcc6a2670c8212fa65a68bcb467fb6a2b979fa573 (patch)
treed450564534ba21e39a892d6cdf837442a54621cf
parentapplication/json の content-type header をデフォルトで付与する (#52) (diff)
downloadmisskey-cc6a2670c8212fa65a68bcb467fb6a2b979fa573.tar.gz
misskey-cc6a2670c8212fa65a68bcb467fb6a2b979fa573.tar.bz2
misskey-cc6a2670c8212fa65a68bcb467fb6a2b979fa573.zip
Update misskey-js.api.md
-rw-r--r--etc/misskey-js.api.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/etc/misskey-js.api.md b/etc/misskey-js.api.md
index bc3dbcaccf..a2cbb0c2ec 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<any>;