TypeScript 实践中常见的问题

发布于 2022-11-25 18:55:12 字数 397 浏览 132 评论 2

导入 svg

在全局中添加声明:

declare module '*.svg' {
  const content: string
  export default content
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

雪化。雨蝶 2022-05-02 23:07:00

交叉类型中复写类型应该使用 omit 排除相同的 key
交叉类型,每一项的 key 也会进行交叉操作,不排除可能造成类型错误

[❌] type BasicProps = {
  onChange?: (value: string, e: React.MouseEvent<HTMLInputElement>) => void;
}
type SelfProps = {
onChange?: (value: number | string) => void;
}

type IProps = BasicProps & SelfProps

[✅] type BasicProps = {
  onChange?: (value: string, e: React.MouseEvent<HTMLInputElement>) => void;
}
type SelfProps = {
onChange?: (value: number | string) => void;
}

type IProps = Omit<BasicProps, 'onChange'> & SelfProps
提笔落墨 2022-05-01 12:24:19

react-router withRouter 的使用

export interface HandleNodeSideContentProps extends RouteComponentProps {
  queue?: string[];
  strategyStore?: IStrategyStore;
}


export default withRouter<HandleNodeSideContentProps>(HandleNodeSideContent);
~没有更多了~

关于作者

心的位置

暂无简介

0 文章
0 评论
23 人气
更多

推荐作者

醉城メ夜风

文章 0 评论 0

远昼

文章 0 评论 0

平生欢

文章 0 评论 0

微凉

文章 0 评论 0

Honwey

文章 0 评论 0

qq_ikhFfg

文章 0 评论 0

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文