From 1b94d8d14e67ff2a4387db5db230b279a4e3632c Mon Sep 17 00:00:00 2001 From: Sercan Yemen Date: Wed, 30 May 2018 12:23:31 +0300 Subject: [PATCH] Config types --- src/@fuse/types/fuse-config.ts | 2 +- src/app/fuse-config/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/@fuse/types/fuse-config.ts b/src/@fuse/types/fuse-config.ts index 5cdf067a..29be0336 100644 --- a/src/@fuse/types/fuse-config.ts +++ b/src/@fuse/types/fuse-config.ts @@ -18,5 +18,5 @@ export interface FuseConfig mode: 'fullwidth' | 'boxed' }; customScrollbars: boolean; - routerAnimation: string; + routerAnimation: 'fadeIn' | 'slideUp' | 'slideDown' | 'slideRight' | 'slideLeft' | 'none'; } diff --git a/src/app/fuse-config/index.ts b/src/app/fuse-config/index.ts index 8b1c2af2..93dc6e53 100644 --- a/src/app/fuse-config/index.ts +++ b/src/app/fuse-config/index.ts @@ -27,5 +27,5 @@ export const fuseConfig: FuseConfig = { mode : 'fullwidth' }, customScrollbars: true, - routerAnimation : 'fadeIn' // fadeIn, slideUp, slideDown, slideRight, slideLeft, none + routerAnimation : 'fadeIn' };