Config types

This commit is contained in:
Sercan Yemen 2018-05-30 12:23:31 +03:00
parent 232b4de752
commit 1b94d8d14e
2 changed files with 2 additions and 2 deletions

View File

@ -18,5 +18,5 @@ export interface FuseConfig
mode: 'fullwidth' | 'boxed'
};
customScrollbars: boolean;
routerAnimation: string;
routerAnimation: 'fadeIn' | 'slideUp' | 'slideDown' | 'slideRight' | 'slideLeft' | 'none';
}

View File

@ -27,5 +27,5 @@ export const fuseConfig: FuseConfig = {
mode : 'fullwidth'
},
customScrollbars: true,
routerAnimation : 'fadeIn' // fadeIn, slideUp, slideDown, slideRight, slideLeft, none
routerAnimation : 'fadeIn'
};