Type challenge 13・Hello World

곰개구리·2023년 10월 1일
0

type challenge

목록 보기
1/4
post-thumbnail
post-custom-banner
/* _____________ 여기에 코드 입력 _____________ */
type HelloWorld = string // expected to be a string

/* _____________ 테스트 케이스 _____________ */
import type { Equal, Expect, NotAny } from '@type-challenges/utils'

type cases = [
  Expect<NotAny<HelloWorld>>,
  Expect<Equal<HelloWorld, string>>,
]

/* _____________ 다음 단계 _____________ */
/*
  > 정답 공유하기: https://tsch.js.org/13/answer/ko
  > 정답 보기: https://tsch.js.org/13/solutions
  > 다른 문제들: https://tsch.js.org/ko
*/

NotAny는 any type이 아니어야 하고,
Expect는 내부 타입이 true? 여야 하고
Equal은 두 type이 같아야 하나 보다

워밍업이라 그냥 답을 알려주는 문제

profile
개굴개굴 곰개굴
post-custom-banner

0개의 댓글