반응형
0. 문제
내장 제네릭 Parameters<T>
를 사용하지 않고 구현하세요
1. 설명
/* _____________ Your Code Here _____________ */
type MyParameters<T extends (...args: any[]) => any> = T extends (...any: infer A)=> any ? A : A
type A = MyParameters<typeof foo>
/* _____________ Test Cases _____________ */
import type { Equal, Expect } from '@type-challenges/utils'
const foo = (arg1: string, arg2: number): void => {}
const bar = (arg1: boolean, arg2: { a: 'A' }): void => {}
const baz = (): void => {}
type cases = [
Expect<Equal<MyParameters<typeof foo>, [string, number]>>,
Expect<Equal<MyParameters<typeof bar>, [boolean, { a: 'A' }]>>,
Expect<Equal<MyParameters<typeof baz>, []>>,
]
type MyParameters<T extends (...args: any[]) => any> = T extends (...any: infer A)=> any ? A : A
args의 type을 infer로 찾아 A에 입력해준 다음에 A(parameter의 타입들)을 출력해준다
반응형
'✍ 공부 > TypeScript' 카테고리의 다른 글
[type-challenges] Tuple to Union (0) | 2023.05.30 |
---|---|
[type-challenges] Deep Readonly (0) | 2023.05.30 |
[type-challenges] Unshift (0) | 2023.05.23 |
[type-challenges] Push (0) | 2023.05.23 |
[type-challenges] Concat (0) | 2023.05.23 |