stryker-api
Version:
The api for the extendable JavaScript mutation testing framework Stryker
11 lines • 382 B
TypeScript
import { Factory } from '../../core';
import TestRunner from './TestRunner';
import RunnerOptions from './RunnerOptions';
declare namespace TestRunnerFactory {
/**
* Returns the current instance of the TestRunnerFactory.
*/
function instance(): Factory<RunnerOptions, TestRunner>;
}
export default TestRunnerFactory;
//# sourceMappingURL=TestRunnerFactory.d.ts.map