UNPKG
typeas
Version:
latest (0.0.1)
0.0.1
Library for checking data values and type safety
github.com/openorson/typeas
typeas
/
dist
/
cjs
/
expressions
/
date.d.cts
7 lines
(4 loc)
•
234 B
text/typescript
View Raw
1
2
3
4
5
6
7
import
{
CreateExpression
}
from
'../factories/expression.cjs'
;
import
'../types/join.cjs'
;
type
DateExpression
=
CreateExpression
<
"date"
, [
`
${
string
}
~`
|
`~
${
string
}
`
|
`
${
string
}
~
${
string
}
`
|
""
]>;
export
type
{
DateExpression
};