UNPKG

@stryker-mutator/api

Version:

The api for the extendable JavaScript mutation testing framework Stryker

10 lines (8 loc) 196 B
import { Position } from './position.js'; /** * A location in the source code which can span multiple lines and/or columns. */ export interface Location { start: Position; end: Position; }