TypeScript instanciar matriz 2D

let myArray: boolean[][] = Array(10).fill([]).map(() => Array(10).fill(false));
tnebes