TypeScript/tests/cases/fourslash/annotateWithTypeFromJSDoc16.ts

13 lines
425 B
TypeScript
Raw Normal View History

/// <reference path='fourslash.ts' />
// @strict: true
/////** @type {function(*, ...number, ...boolean): void} */
////var x = (x, ys, ...zs) => { x; ys; zs; };
verify.codeFix({
index: 3,
description: "Annotate with type from JSDoc",
newFileContent:
`/** @type {function(*, ...number, ...boolean): void} */
var x: (arg0: any, arg1: number[], ...rest: boolean[]) => void = (x, ys, ...zs) => { x; ys; zs; };`,
});