摘要:
参数注解和返回值注解 interface Foo { foo: string; } function getFoo(str: Foo): Foo { return str } getFoo(111) 如果没有添加返回值注解,ts自动推断出返回值。 可选参数和参数默认值 function foo(ba 阅读全文
摘要:
lib.d.ts包含 JavaScript 运行时以及 DOM 中存在各种常见的环境声明,方便我们在写代码时默认获得类型提示 let a = 11 a.toString() // 拥有类型提示 const height = window.innerHeight // 拥有类型提示 lib.d.ts 阅读全文