UNPKG

stryker-api

Version:

The api for the extendable JavaScript mutation testing framework Stryker

10 lines 289 B
/** * A specific spot in the source code based on line and column. * Stryker uses zero-based indexes. So the first character in a file is at line 0, column 0. */ interface Position { line: number; column: number; } export default Position; //# sourceMappingURL=Position.d.ts.map