TypeScript中的类型别名
更新记录
2022年6月30日 发布。
使用type关键字即可。
简单使用。
type panda = string;
let a:panda = "abc";
复杂一点的使用。
type NameResolver = () => string;
let b:NameResolver = function():string{return 'abc';};
本文来自博客园,作者:重庆熊猫,转载请注明原文链接:https://www.cnblogs.com/cqpanda/p/16260097.html