typescript 如何使vscode正确使用@deprecated进行命名导出

dtcbnfnu  于 2023-04-13  发布在  TypeScript
关注(0)|答案(1)|浏览(160)

在下面的示例中,vscode似乎没有选择@deprecated标记,我不明白为什么?用例是将lodash模板函数标记为已弃用。

import _template from 'lodash/template';

/** @deprecated Deprecated. Use JavaScript template string instead. */
export {_template as template};
wgeznvg7

wgeznvg71#

请试试

import _template from 'lodash/template';

export {
/** @deprecated Deprecated. Use JavaScript template string instead. */
_template as template
};

相关问题