UNPKG

@stryker-mutator/api

Version:

The api for the extendable JavaScript mutation testing framework Stryker

16 lines (12 loc) 322 B
import { MutationRange } from './mutation-range.js'; /** * Input files by file name. */ export type FileDescriptions = Record<string, FileDescription>; export type MutateDescription = MutationRange[] | boolean; /** * The metadata of a input file */ export interface FileDescription { mutate: MutateDescription; }