forked from github/quartz
4 lines
110 B
TypeScript
4 lines
110 B
TypeScript
import { Span } from "./ast"
|
|
|
|
export type Diagnostic = { kind: "lex" | "parse"; message: string; span: Span }
|