UNPKG

765 BTypeScriptView Raw
1import TestableMutant from './TestableMutant';
2import TranspileResult from './transpiler/TranspileResult';
3export default class TranspiledMutant {
4 mutant: TestableMutant;
5 transpileResult: TranspileResult;
6 changedAnyTranspiledFiles: boolean;
7 /**
8 * Creates a transpiled mutant
9 * @param mutant The mutant which is just transpiled
10 * @param transpileResult The transpile result of the mutant
11 * @param changedAnyTranspiledFiles Indicated whether or not this mutant changed the transpiled output files. This is not always the case, for example: mutating a TS interface
12 */
13 constructor(mutant: TestableMutant, transpileResult: TranspileResult, changedAnyTranspiledFiles: boolean);
14}
15//# sourceMappingURL=TranspiledMutant.d.ts.map
\No newline at end of file