mirror of
https://gitee.com/dromara/electron-egg.git
synced 2026-05-14 19:52:10 +08:00
25 lines
327 B
TypeScript
25 lines
327 B
TypeScript
interface OpenDevTools {
|
|
mode: string;
|
|
}
|
|
|
|
interface Jobs {
|
|
messageLog: boolean;
|
|
}
|
|
|
|
interface AppConfig {
|
|
openDevTools: OpenDevTools;
|
|
jobs: Jobs;
|
|
}
|
|
|
|
const config: () => AppConfig = () => {
|
|
return {
|
|
openDevTools: {
|
|
mode: 'bottom'
|
|
},
|
|
jobs: {
|
|
messageLog: true
|
|
}
|
|
};
|
|
};
|
|
|
|
export default config; |