/**
* 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