Adds ColorConfig to Config
This commit is contained in:
@@ -23,8 +23,17 @@ export interface ServiceGroupConfig extends SectionConfig {
|
||||
[x: string]: unknown;
|
||||
}
|
||||
|
||||
export interface ColorConfig {
|
||||
test: string;
|
||||
}
|
||||
|
||||
export interface Config extends SectionConfig {
|
||||
services: Array<ServiceGroupConfig>;
|
||||
|
||||
colors: {
|
||||
light: ColorConfig;
|
||||
dark: ColorConfig;
|
||||
};
|
||||
|
||||
[x: string]: unknown;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user