TypeScript 自定义类型~ 字符串类型 / 对象类型

自定义字符串类型,使用模版字符串

function getData(code:`${string}:${string}`):void{
  console.log(code);
}

getData('1233:01')

let a:`${string}.${string}` = '80.9'

自定义对象类型,使用 interface 关键字

interface obj{
  name:string,
  age:number,
  type?:string
}

let o:obj = {
  name:'lucy',
  age:16
} 

你可能感兴趣的:(TypeScript,javascript,css3,html5)