fix: type

This commit is contained in:
shuilan.cj 2022-03-29 11:13:53 +08:00 committed by ClarkXia
parent 7dc8e9b46e
commit 5995a73ebf
1 changed files with 1 additions and 2 deletions

View File

@ -14,10 +14,9 @@ interface RunServerAppOptions {
requestContext: ServerContext;
appConfig: AppConfig;
routes: RouteItem[];
Document: React.ComponentType<{}>;
documentOnly: boolean;
runtimeModules: (RuntimePlugin | CommonJsRuntime)[];
Document: React.ComponentType<any>;
Document: React.ComponentType<{}>;
assetsManifest: AssetsManifest;
}