Type Challenges Judge

Hello World

提出詳細

type HelloWorld = string
提出日時2025-09-21 10:56:28
問題Hello World
ユーザーyuito-git
ステータスAccepted
テストケース
import type { Equal, Expect, NotAny } from '@type-challenges/utils' type cases = [ Expect<NotAny<HelloWorld>>, Expect<Equal<HelloWorld, string>>, ]