1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
=== tests/cases/conformance/classes/staticIndexSignature/staticIndexSignature5.ts ===
class B {
>B : B
static readonly [s: string]: number;
>s : string
static readonly [s: number]: 42 | 233
>s : number
}
interface I {
static readonly [s: string]: number;
>s : string
static readonly [s: number]: 42 | 233
>s : number
}
type TA = (typeof B)["foo"]
>TA : number
>B : typeof B
type TB = (typeof B)[42]
>TB : 42 | 233
>B : typeof B
type TC = (typeof B)[string]
>TC : number
>B : typeof B
type TD = (typeof B)[number]
>TD : 42 | 233
>B : typeof B
type TE = keyof typeof B;
>TE : string | number
>B : typeof B
type TF = Pick<typeof B, number>
>TF : { [x: number]: 42 | 233; }
>B : typeof B
type TFI = Pick<I, number>
>TFI : { [x: number]: 42 | 233; }
type TG = Omit<typeof B, number>
>TG : { [x: string]: number; }
>B : typeof B
type TGI = Omit<I, number>
>TGI : { [x: string]: number; }
|