From f45944b6db633056e52915de3f3b92a7aec2b76f Mon Sep 17 00:00:00 2001 From: wanchun <445436867@qq.com> Date: Mon, 10 Jul 2023 18:06:31 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BC=98=E5=8C=96ts=E6=8F=90=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/fes-preset-built-in/types.d.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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[];