Accept new baselines

This commit is contained in:
Anders Hejlsberg 2018-07-29 15:14:44 -07:00
parent 8eb24db0c0
commit df100957b6

View File

@ -103,7 +103,7 @@ type T01 = Readonly<A | B | C | null | undefined>;
>null : null
type T02 = Boxified<A | B[] | C | string>
>T02 : string | Boxified<A> | Boxified<C> | Boxified<B[]>
>T02 : string | Boxified<A> | Boxified<C> | Box<B>[]
>Boxified : Boxified<T>
>A : A
>B : B