mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
14 lines
298 B
TypeScript
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;
|
|
}
|