mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* [ACA-4229] [ADW-AGS] Move Governance plugin check script to ADF CLI * * Added description
13 lines
260 B
TypeScript
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;
|
|
}
|