import { HappeningType } from '../';
/** Plan happening (instantaneous action or start/end snap action) generated in the process of the plan search. */
export interface SearchHappening {
    earliestTime: number;
    actionName: string;
    shotCounter: number;
    iterations: number;
    kind: HappeningType;
    isRelaxed: boolean;
}
