fix(types): add RequestOptions

This commit is contained in:
AJ ONeal 2022-09-01 00:33:01 -06:00
父節點 88ae1a2086
當前提交 968926cdc5
沒有發現已知的金鑰在資料庫的簽署中
GPG Key ID: 585419CA6DB0AA23
共有 2 個文件被更改,包括 12 次插入7 次删除

查看文件

@ -1,4 +1,5 @@
/**
* @typedef {import('./types.js').RequestOptions} RequestOptions
* @typedef {import('./types.js').Response} Response
* @typedef {import('./types.js').Headers} Headers
*/

查看文件

@ -4,16 +4,20 @@ module.exports._typesOnly = true;
/**
* @callback Request
* @param {Object} opts
* @param {any} [opts.body]
* @param {Object.<String,any>} [opts.form]
* @param {Headers} [opts.headers]
* @param {String} [opts.method]
* @param {Boolean | any} [opts.json]
* @param {String} opts.url
* @param {RequestOptions} opts
* @returns {Response}
*/
/**
* @typedef {Object} RequestOptions
* @prop {any} [opts.body]
* @prop {Object.<String,any>} [opts.form]
* @prop {Headers} [opts.headers]
* @prop {String} [opts.method]
* @prop {Boolean | any} [opts.json]
* @prop {String} opts.url
*/
/**
* @typedef {Object} Response
* @prop {any} body