Type Challenges Judge

Hello World

提出詳細

type HelloWorld = string
提出日時2024-07-15 06:51:21
問題Hello World
ユーザーkult0922
ステータスAccepted
テストケース
import type { Equal, Expect, NotAny } from '@type-challenges/utils' type cases = [ Expect<NotAny<HelloWorld>>, Expect<Equal<HelloWorld, string>>, ]