Update test

This commit is contained in:
Anders Hejlsberg 2018-10-08 16:46:45 -07:00
parent 2e5a39a3ce
commit 209f30c2f1

View File

@ -63,12 +63,11 @@ type Q21 = Shape[WIDTH_OR_HEIGHT]; // number
type Q30 = [string, number][0]; // string
type Q31 = [string, number][1]; // number
type Q32 = [string, number][2]; // string | number
type Q32 = [string, number][number]; // string | number
type Q33 = [string, number][E.A]; // string
type Q34 = [string, number][E.B]; // number
type Q35 = [string, number][E.C]; // string | number
type Q36 = [string, number]["0"]; // string
type Q37 = [string, number]["1"]; // string
type Q35 = [string, number]["0"]; // string
type Q36 = [string, number]["1"]; // string
type Q40 = (Shape | Options)["visible"]; // boolean | "yes" | "no"
type Q41 = (Shape & Options)["visible"]; // true & "yes" | true & "no" | false & "yes" | false & "no"