UNPKG

stryker

Version:
11 lines 465 B
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