import { TestOutcome } from "./test-outcome";
export interface IResultWithOutcome {
    readonly outcome: TestOutcome;
}
