You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* @param {Object} options.headers Additional headers to send with requests
11
11
* @param {boolean} options.camelCaseTypes If true, the `type` value will be camelCased, e.g `library-entries` and `library_entries` become `libraryEntries` (default `true`)
12
12
* @param {string} options.resourceCase `kebab`, `snake` or `none`. If `kebab`, `/libraryEntries` will become `/library-entries`. If `snake`, `/libraryEntries` will become `/library_entries`, If `none`, `/libraryEntries` will be unchanged (default `kebab`)
13
-
* @param {boolean} options.pluralize If `true`, `/user` will become `/users` in the URL request and `type` will be pluralized in post, patch and delete requests - `user` -> `users` (default `true`)
13
+
* @param {boolean} options.pluralize If `true`, `/user` will become `/users` in the URL request and `type` will be pluralized in POST, PATCH and DELETE requests (default `true`)
14
14
* @param {number} options.timeout Set the request timeout in milliseconds (default `30000`)
15
-
* @param {Object} options.axiosOptions Additional options for the axios instance
15
+
* @param {Object} options.axiosOptions Additional options for the axios instance (see [axios/axios#request-config](https://github.com/axios/axios#request-config) for details)
16
16
* @example <caption>Using with Kitsu.io's API</caption>
17
17
* const api = new Kitsu()
18
18
* @example <caption>Using another API server</caption>
@@ -81,7 +81,7 @@ export default class Kitsu {
81
81
/**
82
82
* Axios Interceptors (alias of `axios.interceptors`)
83
83
*
84
-
* You can intercept responses before they are handled by `get`, `post`, `patch` and `delete` and before requests are sent to the API server.
84
+
* You can intercept responses before they are handled by `get`, `post`, `patch` and `delete` and before requests are sent to the API server. See [axios/axios#interceptors](https://github.com/axios/axios#interceptors) for details.
0 commit comments