如果为了规范可以用枚举 export enum ButtonType { Default = 'default', Primary = 'primary', Danger = 'danger', Warning = 'warning', } export function setButtonType(type: ButtonType): void { } // 其他文件可以导入此枚举或者方法 setButtonType(ButtonType.Primary);
阅读量:1
点赞量:0