import Node from '../nodes/node/Node.js'; /** * Range boundary point. */ export default interface IRangeBoundaryPoint { node: Node; offset: number; }