2021年2月20日

Less入门笔记

摘要: 1 // 变量定义 2 @width:10px; 3 @height:@width + 10px; 4 .box { 5 width: @width; 6 height: @height; 7 } 8 9 //混合 10 .border { 11 border-top: dotted 1px bla 阅读全文

posted @ 2021-02-20 17:03 I666999 阅读(35) 评论(0) 推荐(0) 编辑

2021年2月19日

TypeScript泛型接口定义和使用

摘要: 1 //第一种泛型接口定义 2 interface ConfigFn<T> { 3 (value:T):T; 4 } 5 6 function test<T>(arg:T):T{ 7 return arg; 8 } 9 //第一种泛型接口的定义使用时需要指定泛型类型 10 let myTestInt 阅读全文

posted @ 2021-02-19 19:19 I666999 阅读(76) 评论(0) 推荐(0) 编辑

导航