/** * Condition function interface * @interface * * @author Dilip Kola */ export interface IConditionFunction { evaluate(args?: any, context?: any): boolean | Promise; }