Skip to content

Commit

Permalink
v2.3.6 (#262)
Browse files Browse the repository at this point in the history
* Update props interface based on original typings

* Bump version number
  • Loading branch information
ndresx committed Aug 10, 2024
1 parent 4a5c543 commit 4e76783
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-countdown",
"version": "2.3.5",
"version": "2.3.6",
"description": "A customizable countdown component for React.",
"main": "./dist/index.js",
"module": "./dist/index.es.js",
Expand Down
6 changes: 3 additions & 3 deletions src/Countdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ import {
} from './utils';

interface Props<T> {
children?: React.ReactNode;
key?: React.Key;
ref?: React.LegacyRef<T>;
children?: React.ReactNode | undefined;
key?: React.Key | undefined;
ref?: React.LegacyRef<T> | undefined;
}

export interface CountdownProps
Expand Down

0 comments on commit 4e76783

Please sign in to comment.