Skip to content

Commit

Permalink
Merge pull request #144 from chyron-live/update/types
Browse files Browse the repository at this point in the history
Update/types
  • Loading branch information
sghall committed Jun 5, 2022
2 parents 2fff320 + d8b85ce commit fad43bd
Show file tree
Hide file tree
Showing 4 changed files with 6,672 additions and 33 deletions.
62 changes: 32 additions & 30 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@
"@types/fs-extra": "^8.1.1",
"@types/jest": "^24.9.1",
"@types/node": "^13.13.30",
"@types/react": "^16.9.56",
"@types/react-dom": "^16.9.9",
"@types/react": "18.0.8",
"@types/react-dom": "18.0.3",
"@types/sinon": "^7.5.2",
"@types/warning": "^3.0.0",
"bluebird": "^3.7.2",
Expand Down
2 changes: 1 addition & 1 deletion src/Slider/Slider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ interface RCSComponent {
};
}

const isRCSComponent = (item: React.ReactNode): item is RCSComponent => {
const isRCSComponent = (item: React.ReactNode) => {
if (!isValidElement(item)) {
return false;
}
Expand Down

0 comments on commit fad43bd

Please sign in to comment.