diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2023-02-01 11:32:12 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2023-02-01 11:32:12 +0900 |
| commit | cc6a2670c8212fa65a68bcb467fb6a2b979fa573 (patch) | |
| tree | d450564534ba21e39a892d6cdf837442a54621cf | |
| parent | application/json の content-type header をデフォルトで付与する (#52) (diff) | |
| download | misskey-cc6a2670c8212fa65a68bcb467fb6a2b979fa573.tar.gz misskey-cc6a2670c8212fa65a68bcb467fb6a2b979fa573.tar.bz2 misskey-cc6a2670c8212fa65a68bcb467fb6a2b979fa573.zip | |
Update misskey-js.api.md
| -rw-r--r-- | etc/misskey-js.api.md | 3 |
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>; |