diff --git a/src/trigger.ts b/src/trigger.ts index 23e316bdfa..3a5df56ba6 100644 --- a/src/trigger.ts +++ b/src/trigger.ts @@ -74,6 +74,10 @@ export class Trigger extends Base { } return res; } + public isGhost: boolean; + protected get isInternal(): boolean { + return this.isGhost === true; + } public get operator(): string { return this.getPropertyValue("operator", "equal"); }