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