--- source: crates/biome_js_analyze/tests/spec_tests.rs expression: valid-index-signatures.ts --- # Input ```ts type ValidIndexSignatures = { a: { [index: string]: string; }; b: { [index: string]: string; }; }; interface I { [index: number]: string; [index: string]: string; } // See https://github.com/biomejs/biome/issues/175 const x: { [key: string]: string } = {}; let key; let a: { [key: string]: string }; let b: { [key: string]: string }; ```