【发布时间】:2018-06-01 20:05:55
【问题描述】:
我无法破译我在此处的接口声明中找到的 TypeScript 语法。
interface FormattingOptions {
tabSize: number;
insertSpaces: boolean;
[key: string]: boolean | number | string;
}
谁能解释一下这个接口的第三个参数?包含[key: string] ...的那个?这种语法怎么称呼?
【问题讨论】:
标签: typescript