To Slava.In,
Slava.In
In TypeScript $ is used to do interpolation for literals.
$
For example,
type World = "world"; type Greeting = `hello ${World}`;
is equivalent to
type Greeting = "hello world"
Template Literal Types