tests/cases/conformance/jsx/tsxAttributeResolution2.tsx(17,21): error TS2339: Property 'leng' does not exist on type 'string'. ==== tests/cases/conformance/jsx/tsxAttributeResolution2.tsx (1 errors) ==== declare module JSX { interface Element { } interface IntrinsicElements { test1: Attribs1; } } interface Attribs1 { c1?: (x: string) => void; } // OK x.length} />; // OK x.leng} />; // OK // Errors x.leng} />; // Error, no leng on 'string' ~~~~ !!! error TS2339: Property 'leng' does not exist on type 'string'.