Microsoft/TypeScript

Better display representation for intersection types

Open

#7.705 aberto em 27 de mar. de 2016

Ver no GitHub
 (7 comments) (3 reactions) (0 assignees)TypeScript (6.726 forks)batch import
Effort: DifficultHelp WantedSuggestion

Métricas do repositório

Stars
 (48.455 stars)
Métricas de merge de PR
 (Mesclagem média 6d 17h) (9 fundiu PRs em 30d)

Description

I'm not sure if this has been discussed before, but join types are mostly unreadable. I think the type should be prettified somehow before being displayed to the user.

TypeScript Version:

1.8

Code

type T1 = {};
type T2 = {test: number};
type J = T1 & T2;

Expected behavior:

var x: J;
typeof x; // {test: number}

Actual behavior:

var x: J;
typeof x; // {} & {test: number}

Guia do colaborador