以我自己的组件react-better-countdown为例,
首先在package.json里面添加types: types/index.d.ts,
,
然后文件目录上添加对应文件夹和文件,
最后是index.d.ts文件的编写,具体看代码:
import * as React from 'react'; interface CountdownProps { count?: number; dayText?: string | React.ReactElement; hourText?: string | React.ReactElement; minuteText?: string | React.ReactElement; secondText?: string | React.ReactElement; callback?: Function; className?: string; style?: React.CSSProperties; rest?: any } interface CountdownState { count?: number; } declare module 'react-better-countdown' { export default class Countdown extends React.Component<CountdownProps, CountdownState> { state: CountdownState; timer: null | number; tick: () => void; componentDidMount(): void; componentDidUpdate(prevProps: CountdownProps): void; componentWillUnmount(): void; render: () => React.ReactElement; } }
更多详细代码看仓库:https://github.com/leeseean/react-better-countdown顺便求个Star!
到此这篇关于为react组件库添加typescript类型提示的方法的文章就介绍到这了,更多相关react组件库添加typescript类型提示内容请搜索呐喊教程以前的文章或继续浏览下面的相关文章希望大家以后多多支持呐喊教程!
声明:本文内容来源于网络,版权归原作者所有,内容由互联网用户自发贡献自行上传,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任。如果您发现有涉嫌版权的内容,欢迎发送邮件至:notice#nhooo.com(发邮件时,请将#更换为@)进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。