Prevent mutation of arrays.
ReadonlyArray<number>
const arr: ReadonlyArray<number> = [1, 2]; function get(a: typeof arr) { return a[0]; }