import { Triple } from "./triple"; export interface Graph { match(pattern: Partial>): IterableIterator>; } export interface AsyncGraph { match(pattern: Partial>): AsyncIterableIterator>; } //# sourceMappingURL=graph.d.ts.map