// @filename: ex.d.tsexportclassC{start: numberend: number}// @filename: test.jsconstC=require('./ex').CconstC=require('./ex').C;/** @type {C} c */varc=newC()Expected: No error, and completions for c.start and c.end
Actual: Error, "Property 'prototype' is missing in type 'C' but required in type 'typeof C'."
Expected: No error, and completions for
c.startandc.endActual: Error, "Property 'prototype' is missing in type 'C' but required in type 'typeof C'."