react-countup
react-countup copied to clipboard
missing types
æ— ç±»åž‹å®šä¹‰ï¼Œbut works
I cannot reproduce it, could you please provide some extra details?
Facing a similar issue with missing prop types like startOnMount
<CountUp
start={0}
end={10}
startOnMount={false}
/>
TS2322: Type '{ start: number; end: number; startOnMount: boolean; }' is not assignable to type 'IntrinsicAttributes & CountUpProps'.
Property 'startOnMount' does not exist on type 'IntrinsicAttributes & CountUpProps'.
Facing a similar issue with missing prop types like
startOnMount<CountUp start={0} end={10} startOnMount={false} />TS2322: Type '{ start: number; end: number; startOnMount: boolean; }' is not assignable to type 'IntrinsicAttributes & CountUpProps'. Property 'startOnMount' does not exist on type 'IntrinsicAttributes & CountUpProps'.
startOnMount prop is used only for counter created with hook