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