Files
AstrBot/dashboard/src/config.ts
T

18 lines
327 B
TypeScript

export type ConfigProps = {
Sidebar_drawer: boolean;
Customizer_drawer: boolean;
mini_sidebar: boolean;
fontTheme: string;
inputBg: boolean;
};
const config: ConfigProps = {
Sidebar_drawer: true,
Customizer_drawer: false,
mini_sidebar: false,
fontTheme: 'Roboto',
inputBg: false
};
export default config;