Skip to main content
Module

x/pbkit/core/parser/location.ts

Protobuf toolkit for modern web development
Go to Latest
File
import { ColRow } from "./recursive-descent-parser.ts";
export interface Location extends Range { filePath: string;}
export interface Range { start: ColRow; end: ColRow;}