其他分享
首页 > 其他分享> > ts、typescript、enum、枚举、ts 获取枚举对应的类型、获取 enum 的 key 和 value

ts、typescript、enum、枚举、ts 获取枚举对应的类型、获取 enum 的 key 和 value

作者:互联网

ts、typescript、enum、枚举、ts 获取枚举对应的类型


// 假设我一个枚举
enum ENUM_TYPE {
    ALL = 'all',
    SOME = 'some',
    LITTLE = 'little'
}

// 获取枚举的 value
type IValue = `${ENUM_TYPE}`  // 'all' | 'some' | 'little'

// 获取枚举的 key
type IKey = keyof typeof ENUM_TYPE  // 'ALL' | 'SOME' | 'LITTLE'

标签:enum,ENUM,ts,获取,枚举,TYPE
来源: https://www.cnblogs.com/PeiQi1229/p/16512842.html