TypeScript/tests/cases/fourslash/annotateWithTypeFromJSDoc1.ts
2017-09-26 09:08:39 -07:00

11 lines
288 B
TypeScript

/// <reference path='fourslash.ts' />
// @Filename: test123.ts
/////** @type {number} */
////var /*1*/x;
verify.applicableRefactorAvailableAtMarker('1');
verify.fileAfterApplyingRefactorAtMarker('1',
`/** @type {number} */
var x: number;`, 'Annotate with type from JSDoc', 'annotate');