import * as schema from 'mutation-testing-report-schema/api'; export type { MutantStatus } from 'mutation-testing-report-schema/api'; /** * Represents a mutant in its initial state. */ export interface Mutant extends Pick { /** * The file name from which this mutant originated */ fileName: string; /** * Actual mutation that has been applied. */ replacement: string; /** * The status of a mutant if known. This should be undefined for a mutant that still needs testing. */ status?: schema.MutantStatus; } /** * Represents a mutant in its matched-with-the-tests state, ready to be tested. */ export type MutantTestCoverage = Mutant & Pick; /** * Represents a mutant in its final state, ready to be reported. */ export type MutantResult = Mutant & schema.MutantResult; //# sourceMappingURL=mutant.d.ts.map