UNPKG

@syntest/core

Version:

The common core of the SynTest Framework

12 lines 304 B
/** * Interface for a termination trigger that stops the search process. * * @author Mitchell Olsthoorn */ export interface TerminationTrigger { /** * Return if the termination trigger has been triggered. */ isTriggered(): boolean; } //# sourceMappingURL=TerminationTrigger.d.ts.map