TypeScript/tests/cases/fourslash/jsdocDeprecated_suggestion8.ts

14 lines
350 B
TypeScript
Raw Normal View History

///<reference path="fourslash.ts" />
// @Filename: first.ts
//// /** @deprecated */
//// export declare function tap<T>(next: null): void;
//// export declare function tap<T>(next: T): T;
// @Filename: second.ts
//// import { tap } from './first';
//// tap
goTo.file('second.ts')
verify.noErrors()
verify.getSuggestionDiagnostics([]);