1
0

feat: abstract to useGanttFilter / and useRouteFilter

This commit is contained in:
Dominik Pschenitschni
2022-10-18 14:41:41 +02:00
committed by kolaente
parent 2acb70c562
commit 2c732eb0d5
6 changed files with 154 additions and 126 deletions

View File

@ -2,6 +2,6 @@
* Returns a date as a string value in ISO format.
* same format as `new Date().toISOString()`
*/
export type DateISO = string
export type DateISO<T extends string = string> = T
new Date().toISOString()