/** * Created by Christophe on 07/03/2017. */ import { Dispatcher } from "../common/dispatcher.class"; import { Actionable } from "../script/interfaces/actionable.interface"; export declare class BaseTrigger extends Dispatcher implements Actionable { protected _enabled: boolean; constructor(); action(arg?: any): void; enable(): void; disable(): void; readonly enabled: boolean; executeAction(actionName: string, args: string[]): void; }