I have a type that looks something like this:
type Location=`${number},${number};${number},${number};...`
Is there a Utility type like Repeat<T>
that can do this for me?
like this:
type Location=Repeat<`${number},${number};`>
Blancer.com Tutorials and projects
Freelance Projects, Design and Programming Tutorials
I have a type that looks something like this:
type Location=`${number},${number};${number},${number};...`
Is there a Utility type like Repeat<T>
that can do this for me?
like this:
type Location=Repeat<`${number},${number};`>