代码之家  ›  专栏  ›  技术社区  ›  aleclarson

将区分的并集(或对象类型数组)转换为具有文本属性作为键的映射类型

  •  2
  • aleclarson  · 技术社区  · 6 年前

    我可以兑换一张支票吗 Array<A | B> 进入 { [key: (A | B)['type']]: A | B } "a" 映射到类型 A "b" 映射到类型 B .

    type A = {type: 'a'}
    type B = {type: 'b'}
    
    type Kinds = [A, B]
    type Kind = Kinds[number]
    
    // How to use the above types to get this?
    type ByKind = { a: A, b: B }
    

    ByKind 对象类型,因为它们已在类型中声明 A. B

    1 回复  |  直到 6 年前
        1
  •  3
  •   Titian Cernicova-Dragomir    6 年前

    非常接近,我们可以使用映射类型映射到 Kind[type] 但是我们需要使用 Extract 条件类型,从符合键的联合中提取类型 P

    type A = {type: 'a'}
    type B = {type: 'b'}
    
    type Kinds = [A, B]
    type Kind = Kinds[number]
    
    type ByKind = {
        [P in Kind['type']]: Extract<Kind, { type: P }>
    }