sandstone
sandstone copied to clipboard
`TimeArgument` type could be more precise
Instead of number | LiteralUnion<'1t' | '1s' | '1d'>
, it could be number | `${number}${'t' | 's' | 'd'}`
(or something equally restrictive that still includes '1t'
, '1s'
, and '1d'
as auto-complete options).
That's right! Didn't think about that. I'll change it.