Hello @n4o847 , how can I use not only one arguments? for example
type Main<Input1 extends string, Input2 extends string> = `Hello, ${Input1} ${Input2}!\n`;
export default Main;
or maybe
type Main<Input extends [string, number]> = `Hello, ${Input[0]} ${Input[1]}`;
export default Main;
Hello @n4o847 , how can I use not only one arguments? for example
or maybe