typescript-book icon indicating copy to clipboard operation
typescript-book copied to clipboard

Example of "All members must conform to the string index signature" looks wrong to me

Open deqing opened this issue 3 years ago • 0 comments

https://basarat.gitbook.io/typescript/type-system/index-signatures#all-members-must-conform-to-the-string-index-signature

/** Error */
interface Bar {
  x: number;
  y: string; // ERROR: Property `y` must be of type number
}

Actually this example is not error

deqing avatar Aug 03 '21 12:08 deqing