This commit is contained in:
Norbert de Langen 2022-10-22 04:51:15 +02:00
parent 790c72b660
commit 9ca18321bc
No known key found for this signature in database
GPG Key ID: FD0E78AF9A837762
3 changed files with 9 additions and 5 deletions

View File

@ -24,7 +24,7 @@ interface MatchingData {
}
interface LocationProps {
children: (renderData: RenderData) => ReactNode;
children: (renderData: RenderData) => any;
}
interface MatchProps {
path: string;

View File

@ -39,12 +39,16 @@
"check": "../../../scripts/node_modules/.bin/tsc --noEmit",
"prep": "../../../scripts/prepare/bundle.ts"
},
"devDependencies": {
"@storybook/csf": "0.0.2--canary.49.258942b.0",
"dependencies": {
"@babel/core": "^7.12.10",
"@types/babel__core": "^7.0.0",
"@types/express": "^4.7.0",
"express": "^4.17.1",
"file-system-cache": "^2.0.0"
},
"devDependencies": {
"@storybook/csf": "0.0.2--canary.49.258942b.0",
"@types/node": "^16.0.0",
"file-system-cache": "^2.0.0",
"synchronous-promise": "^2.0.15",
"typescript": "~4.6.3"
},

View File

@ -21,7 +21,7 @@ export interface API_BaseEntry {
depth: number;
name: string;
refId?: string;
renderLabel?: (item: API_BaseEntry) => React.ReactNode;
renderLabel?: (item: API_BaseEntry) => any;
/** @deprecated */
isRoot: boolean;