stryker
Version:
The extendable JavaScript mutation testing framework
11 lines • 465 B
TypeScript
import NodeMutator from './NodeMutator';
import { IdentifiedNode } from './IdentifiedNode';
/**
* Represents a mutator which can remove the content of an array's elements.
*/
export default class ArrayDeclaratorMutator implements NodeMutator {
name: string;
constructor();
applyMutations(node: IdentifiedNode, copy: <T extends IdentifiedNode>(obj: T, deep?: boolean) => T): void | IdentifiedNode;
}
//# sourceMappingURL=ArrayDeclaratorMutator.d.ts.map