UNPKG
@ohayojp/util
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
Universal toolset of ohayojp.
ohayojp.com
ohayojp/ohayo
@ohayojp/util
/
src
/
config
/
theme
/
http.type.d.ts
15 lines
(14 loc)
•
409 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
export interface OhayoThemeHttpClientConfig {
/** * 空值处理,默认:`include` * - include:包含 * - ignore:忽略 */
nullValueHandling?:
'include'
|
'ignore'
;
/** * 时间值处理,默认:`timestamp` * - timestamp:时间戳 * - ignore:忽略处理,保持原始状态 */
dateValueHandling?:
'timestamp'
|
'ignore'
; }