diff --git a/src/Countdown.tsx b/src/Countdown.tsx index 671b8ea..e00fcd7 100644 --- a/src/Countdown.tsx +++ b/src/Countdown.tsx @@ -12,8 +12,14 @@ import { formatTimeDelta, } from './utils'; +interface Props { + children?: React.ReactNode; + key?: React.Key; + ref?: React.LegacyRef; +} + export interface CountdownProps - extends React.Props, + extends Props, CountdownTimeDeltaFormatOptions, Omit { readonly date: Date | number | string;