diff --git a/packages/fes-preset-built-in/types.d.ts b/packages/fes-preset-built-in/types.d.ts index 243ab5c4..20e39742 100644 --- a/packages/fes-preset-built-in/types.d.ts +++ b/packages/fes-preset-built-in/types.d.ts @@ -6,7 +6,7 @@ import { Plugin } from '@fesjs/runtime'; interface BeforeRenderConfig { loading: Component; - action: () => Promise; + action: ({ router }: { router: Router }) => Promise; } interface ClientRenderOption { @@ -86,10 +86,10 @@ declare module '@fesjs/fes' { dynamicImport?: boolean; inlineLimit?: number; mock?: - | boolean - | { - prefix?: string; - }; + | boolean + | { + prefix?: string; + }; mountElementId?: string; plugins?: string[]; presets?: string[];