✍ 공부/TypeScript

[type-challenges] Parameters

Po_tta_tt0 2023. 5. 23. 21:47
반응형

 

 

 

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의 타입들)을 출력해준다

반응형