From ebb5a5ef0dbe1f724d5c35cf895349042429ea1a Mon Sep 17 00:00:00 2001 From: winixt Date: Mon, 18 Jul 2022 15:13:22 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BC=98=E5=8C=96=20layout=20ts?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/fes-plugin-layout/types.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/fes-plugin-layout/types.d.ts b/packages/fes-plugin-layout/types.d.ts index fd53c236..166fa069 100644 --- a/packages/fes-plugin-layout/types.d.ts +++ b/packages/fes-plugin-layout/types.d.ts @@ -12,9 +12,9 @@ interface Menu { declare module '@fesjs/fes' { interface RouteMeta { - 'keep-alive': boolean; - layout: { - navigation: 'side' | 'mixin' | 'top' | 'left-right' | null, + 'keep-alive'?: boolean; + layout?: { + navigation?: 'side' | 'mixin' | 'top' | 'left-right' | null, } } interface PluginBuildConfig {