core-{app,plugin}-api: update API Reports

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2022-10-17 16:48:28 +02:00
parent 858986f6b6
commit 3cd3dc9adf
2 changed files with 6 additions and 2 deletions
+3 -1
View File
@@ -144,7 +144,9 @@ export type AppComponents = {
NotFoundErrorPage: ComponentType<{}>;
BootErrorPage: ComponentType<BootErrorPageProps>;
Progress: ComponentType<{}>;
Router: ComponentType<{}>;
Router: ComponentType<{
basename?: string;
}>;
ErrorBoundaryFallback: ComponentType<ErrorBoundaryFallbackProps>;
ThemeProvider?: ComponentType<{}>;
SignInPage?: ComponentType<SignInPageProps>;
+3 -1
View File
@@ -139,7 +139,9 @@ export type AppComponents = {
NotFoundErrorPage: ComponentType<{}>;
BootErrorPage: ComponentType<BootErrorPageProps>;
Progress: ComponentType<{}>;
Router: ComponentType<{}>;
Router: ComponentType<{
basename?: string;
}>;
ErrorBoundaryFallback: ComponentType<ErrorBoundaryFallbackProps>;
ThemeProvider?: ComponentType<{}>;
SignInPage?: ComponentType<SignInPageProps>;