5 lines
112 B
TypeScript
5 lines
112 B
TypeScript
import type { Locations } from "./common.js";
|
|
export interface BaseNode extends Locations {
|
|
type: string;
|
|
}
|