@stryker-mutator/api
Version:
The api for the extendable JavaScript mutation testing framework Stryker
10 lines • 324 B
TypeScript
import { CheckStatus } from './check-status.js';
export interface FailedCheckResult {
reason: string;
status: CheckStatus.CompileError;
}
export interface PassedCheckResult {
status: CheckStatus.Passed;
}
export type CheckResult = FailedCheckResult | PassedCheckResult;
//# sourceMappingURL=check-result.d.ts.map