UNPKG

stryker-api

Version:

The api for the extendable JavaScript mutation testing framework Stryker

10 lines 248 B
import Position from './Position'; /** * A location in the source code which can span multiple lines and/or columns. */ interface Location { start: Position; end: Position; } export default Location; //# sourceMappingURL=Location.d.ts.map