@syntest/core
Version:
The common core of the SynTest Framework
13 lines • 403 B
TypeScript
import { ExecutionResult } from "./ExecutionResult";
import { Encoding } from "./Encoding";
import { SearchSubject } from "./SearchSubject";
/**
* @author Mitchell Olsthoorn
*/
export interface EncodingRunner<T extends Encoding> {
/**
* execute the encoding.
*/
execute(subject: SearchSubject<T>, encoding: T): Promise<ExecutionResult>;
}
//# sourceMappingURL=EncodingRunner.d.ts.map