Type Challenges Judge

Hello World

提出詳細

type HelloWorld = string // expected to be a string
提出日時2024-05-02 02:50:30
問題Hello World
ユーザーktny
ステータスAccepted
テストケース
import type { Equal, Expect, NotAny } from '@type-challenges/utils' type cases = [ Expect<NotAny<HelloWorld>>, Expect<Equal<HelloWorld, string>>, ]