Press n or j to go to the next uncovered block, b, p or k for the previous block.
/** * Source position in the original file. */ interface ISourcePosition { line: number; column: number; } export default ISourcePosition;