UNPKG
@mdui/jq
Version:
latest (3.0.3)
3.0.3
3.0.2
3.0.1
3.0.0
拥有和 jQuery 相似 API 的轻量级 JavaScript 工具库
github.com/zdhxiong/mdui
zdhxiong/mdui
@mdui/jq
/
functions
/
ajaxSetup.d.ts
14 lines
(13 loc)
•
313 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import
type
{
Options
}
from
'../shared/ajax.js'
;
/** * 为 ajax 请求设置全局配置参数 *
@param
options 键值对参数 *
@example
```js ajaxSetup({ dataType: 'json', method: 'POST', }); ``` */
export
declare
const
ajaxSetup
: <
TResponse
=
any
>
(
options
:
Options
<
TResponse
>
) =>
Options
<
TResponse
>;