Hello, World
挑战
在 Type Challenges,我们使用类型系统自身去做断言。
在这个挑战中,你需要改变下面的代码使它能够通过测试(没有类型检查错误)。
// expected to be string
type HelloWorld = any;
// you should make this work
type test = Expect<Equal<HelloWorld, string>>;
解答
这是一个热身挑战,让你熟悉他们的练习场,如何接受挑战等等。我们在这里需要做的只是 将类型设置为’ string ‘替代原来的’ any ‘:
type HelloWorld = string;
评论