bouzuya.hatenablog.com

ぼうずやのにっき

2021-02-10から1日間の記事一覧

typeof a[number]

TypeScript のアレコレはすぐに忘れる。 const a = ["a", "b", "c"] as const; // readonly ["a", "b", "c"] type A = typeof a[number]; // "a" | "b" | "c" type A_0 = typeof a[0]; // "a" const b = ["a", "b", "c"]; // string[] type B = typeof b[num…