【发布时间】:2020-04-01 12:18:09
【问题描述】:
/**
* Wraps a styled component to supply default props
* @template {T} - Component type
* @template {TDefaults} - Default props
* @param {T} component - Our styled component object
* @param {TDefaults} defaultProps - The object's default props
* @returns the styled component with default props applied
*/
export function withDefault<T extends { defaultProps?: Partial<TDefaults> }, TDefaults>(component: T, defaultProps: TDefaults): T & { defaultProps: TDefaults } {
// eslint-disable-next-line no-param-reassign
component.defaultProps = defaultProps;
// Cast to any necessary as we can't infer styled component type
return component as any;
}
这会返回这些错误:
5:0 warning The type 'T' is undefined jsdoc/no-undefined-types
6:0 warning The type 'TDefaults' is undefined jsdoc/no-undefined-types
9:41 warning Missing JSDoc comment jsdoc/require-jsdoc
9:135 warning Missing JSDoc comment jsdoc/require-jsdoc
【问题讨论】:
-
您使用的是最新版本的 jsdoc 插件吗?见github.com/gajus/eslint-plugin-jsdoc/issues/428
-
是的,最新消息:
"eslint-plugin-jsdoc": "^22.1.0", -
我个人不使用打字稿,所以我没有设置工作区来测试您的代码示例。您也将
settings.jsdoc.mode设置为打字稿? -
@DisplayNameismissing 是的,我愿意。
标签: typescript jsdoc