import { Relation } from "./relation"; import { Selector } from "./selector"; import { Return } from "./return"; export interface Match { selectors: Selector[]; relations: Relation[]; return: Return; }