plus-ui/src/types/setting.d.ts

71 lines
910 B
TypeScript
Raw Normal View History

2023-04-02 01:01:56 +08:00
declare type DefaultSettings = {
/**
*
*/
title?: string;
/**
* theme-dark | theme-light
*/
sideTheme?: string;
/**
*
*/
showSettings?: boolean;
/**
*
*/
topNav?: boolean;
/**
*
*/
tagsView?: boolean;
/**
*
*/
fixedHeader?: boolean;
/**
* Logo
*/
sidebarLogo?: boolean;
/**
*
*/
layout?: string;
/**
*
*/
theme?: string;
/**
*
*/
size?: string;
/**
*
*/
language?: string;
/**
*
*/
dynamicTitle?: boolean;
/**
*
*/
animationEnable?: boolean;
/**
*
*
* true:
* false:
*/
dark?: boolean;
errorLog?: string;
};