fix(53424): in code documentation is not working upon import if function expression reuse function type (#53964)

This commit is contained in:
Oleksandr T
2023-05-09 02:55:04 +03:00
committed by GitHub
parent 6947c98929
commit 320e628a6d
3 changed files with 108 additions and 3 deletions

View File

@@ -0,0 +1,15 @@
/// <reference path="fourslash.ts" />
// @filename: /a.d.ts
/////** docs - type T */
////export type T = () => void;
/////**
//// * docs - const A: T
//// */
////export declare const A: T;
// @filename: /b.ts
////import { A } from "./a";
////A/**/()
verify.baselineQuickInfo();