标签: typescript ecmascript-6
该手册有这个例子:
let fullName: string = `Bob Bobbington`; let sentence: string = `Hello, my name is ${fullName}.
打字稿如何解决fullName。它是否必须与模板字符串在同一块范围内?
fullName