2022-02-08 10:28:55 +00:00

14 lines
298 B
TypeScript

// eslint-disable-next-line no-shadow
export enum PluginTarget {
processService = 'processService',
processAutomation = 'processAutomation',
governance = 'governance'
}
export interface PluginInterface {
name: string;
host: string;
appName?: string;
uiName?: string;
}