UNPKG
ohayolibs
Version:
latest (1.0.1)
1.0.1
1.0.0
Ohayo is a set of essential modules for ohayojp.
ohayolibs
/
packages
/
util
/
src
/
config
/
theme
/
http.type.ts
15 lines
(14 loc)
•
371 B
text/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'; }