Type Challenges Judge

Hello World

提出詳細

type HelloWorld = string
提出日時2023-12-12 09:25:08
問題Hello World
ユーザーokajima-hirotada
ステータスAccepted
テストケース
import type { Equal, Expect, NotAny } from '@type-challenges/utils' type cases = [ Expect<NotAny<HelloWorld>>, Expect<Equal<HelloWorld, string>>, ]