/*** import { SettingDrawerComponent } from './setting-drawer.component'; * @FileName: * @Author: manyao.zhu * @Date: 2019-10-16 14:09:06 * @file: * @author: manyao.zhu */ /** * 存储的键 */ export declare const STYLE_KEY = "style"; export declare const COLOR_KEY = "color"; export declare const NAV_MODE_KEY = "topMenu"; export declare const CONTENT_WIDTH_KEY = "fixWidth"; export declare const FIX_HEADER_KEY = "fixHeader"; export declare const HIDE_HEADER_KEY = "hideHeader"; export declare const COLLAPSED_KEY = "collapsed"; /** * 数据配置 */ export declare const STYLES: { key: string; img: string; title: string; className: string; }[]; export declare const COLORS: { key: string; title: string; color: string; className: string; }[]; export declare const NAV_MODES: { img: string; top: boolean; title: string; }[]; export declare const CONTENT_WIDTHS: { fixed: boolean; title: string; }[]; /** * 默认值 */ export declare const DEFAULT_STYLE: { key: string; img: string; title: string; className: string; }; export declare const DEFAULT_COLOR: { key: string; title: string; color: string; className: string; }; export declare const DEFAULT_NAV_MODE: boolean; export declare const DEFAULT_CONTENT_WIDTH: boolean; export declare const DEFAULT_FIX_HEADER = false; export declare const DEFAULT_HIDE_HEADER = false;