questions/03312-easy-parameters/README.ja.md
組み込みの型ユーティリティParameters<T>を使用せず、Tからタプル型を構築する型を実装します。
例えば:
const foo = (arg1: string, arg2: number): void => {}
type FunctionParamsType = MyParameters<typeof foo> // [arg1: string, arg2: number]
<a href="../../README.ja.md" target="_blank"></a> <a href="https://tsch.js.org/3312/answer/ja" target="_blank"></a> <a href="https://tsch.js.org/3312/solutions" target="_blank"></a> <!--info-footer-end-->