如何配置强化键入以不为枚举生成环境声明

时间:2018-11-16 13:05:35

标签: typescript enums

默认情况下,强化键入会生成枚举作为环境声明。

当前正在为枚举生成以下代码

declare module MyApp.App {
export enum Status { 
    Done = 0, 
    Unsuccessful = 1, 
    Pending = 2,
}
}

有没有办法改变这种行为?

0 个答案:

没有答案