Parameters easy #infer #tuple #built-in

by midorizemi @midorizemi

Take the Challenge    简体中文 日本語 한국어

Implement the built-in Parameters generic without using it. For example: ```ts const foo = (arg1: string, arg2: number): void => {} type FunctionParamsType = MyParameters // [arg1: string, arg2: number] ```
Back Share your Solutions Check out Solutions