赞
踩
enum EmailStatus {
Read = 'READ',
Unread = 'UNREAD',
Draft = 'DRAFT',
}
interface Status {
// ⛔️ Error: A mapped type may not declare properties or methods.ts(7061)
[key in EmailStatus]: string;
}
改用 type
:
enum EmailStatus {
Read = 'READ',
Unread = 'UNREAD',
Draft = 'DRAFT',
}
// 声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。