siva kumar cf1bb700ae
[ACA-4229] [ADW-AGS] Move Governance plugin check script to ADF CLI (#6523)
* [ACA-4229] [ADW-AGS] Move Governance plugin check script to ADF CLI

* * Added description
2021-01-22 09:28:18 +00:00

13 lines
260 B
TypeScript

export enum PluginTarget {
processService = 'processService',
processAutomation = 'processAutomation',
governance = 'governance'
}
export interface PluginInterface {
name: string;
host: string;
appName?: string;
uiName?: string;
}