✨ Add new config format
This commit is contained in:
19
src/types/config.ts
Normal file
19
src/types/config.ts
Normal file
@@ -0,0 +1,19 @@
|
||||
import { CategoryType } from './category';
|
||||
import { WrapperType } from './wrapper';
|
||||
import { ServiceType } from './service';
|
||||
import { IntegrationsType } from './integration';
|
||||
import { SettingsType } from './settings';
|
||||
|
||||
export interface ConfigType {
|
||||
schemaVersion: string;
|
||||
configProperties: ConfigPropertiesType;
|
||||
categories: CategoryType[];
|
||||
wrappers: WrapperType[];
|
||||
services: ServiceType[];
|
||||
integrations: IntegrationsType;
|
||||
settings: SettingsType;
|
||||
}
|
||||
|
||||
export interface ConfigPropertiesType {
|
||||
name: string;
|
||||
}
|
||||
Reference in New Issue
Block a user