1
0
tl-vikunja/src/types/DateISO.ts
2022-10-27 17:47:15 +02:00

7 lines
180 B
TypeScript

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