UNPKG
nsn-util
Version:
latest (1.0.20210118)
1.0.20210118
1.0.20201209
1.0.20201203
1.0.20201105
1.0.20200928
1.0.20200925
1.0.20200603
1.0.20200602
1.0.20101202
NSN工具辅助组件
www.nsn.com
nsn-util
/
es
/
NDate.d.ts
15 lines
(14 loc)
•
285 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/** * 获取日期 * *
@param
str 需要格式化的日期格式字符串 *
@returns
字符串未定义时,返回当前日期 */
declare
const
now
:
(
str
?:
string
) =>
{
text
:
string
;
value
:
string
;
year
:
number
;
month
:
number
;
day
:
number
; };
export
{ now };