UNPKG

@syntest/core

Version:

The common core of the SynTest Framework

19 lines 518 B
import { Budget } from "./Budget"; import { Encoding } from "../Encoding"; import { SearchTimeBudget } from "./SearchTimeBudget"; /** * Budget for the total time of the search process. * * @author Mitchell Olsthoorn */ export declare class TotalTimeBudget<T extends Encoding> extends SearchTimeBudget<T> implements Budget<T> { /** * @inheritDoc */ initializationStarted(): void; /** * @inheritDoc */ initializationStopped(): void; } //# sourceMappingURL=TotalTimeBudget.d.ts.map