Preview:```ts
/** Returns the type for an arg type string. Example: returns number for "time". */
export type TypeOfArgType<T> =
T extends "string" ? string :
T extends "boolean" ? boolean :
T extends "number" ? number :
T extends "time" ? number :
never;
export type U2I<U> = (
...```
You can choose specific lines to embed by selecting them before copying the link.