TypeScript/tests/cases/fourslash/annotateWithTypeFromJSDoc22.ts
Nathan Shively-Sanders 60efb65931
infer-from-usage suggestions can't be ignored, and always do something when invoked. (#28206)
* Do not ts-ignore noImplicitAny suggestions

Still need to write tests.

* Add tests

* More tests

* Update baselines
2018-10-29 13:23:33 -07:00

21 lines
476 B
TypeScript

/// <reference path='fourslash.ts' />
// @strict: true
////
/////** @param {Object<string, boolean>} sb
//// * @param {Object<number, string>} ns */
////function f(sb, ns) {
//// sb; ns;
////}
verify.codeFix({
description: "Annotate with type from JSDoc",
index: 2,
newFileContent:
`
/** @param {Object<string, boolean>} sb
* @param {Object<number, string>} ns */
function f(sb: { [s: string]: boolean; }, ns: { [n: number]: string; }) {
sb; ns;
}`,
});