mirror of
https://github.com/vale981/grapher
synced 2025-03-05 17:41:41 -05:00
15 lines
386 B
TypeScript
15 lines
386 B
TypeScript
///<reference path="@types/index.d.ts" />
|
|
|
|
import { GrapherQuery } from "@grapher";
|
|
import { Mongo } from "meteor/mongo";
|
|
import { DocumentNode } from "graphql";
|
|
|
|
declare module "meteor/cultofcoders:grapher" {
|
|
export * from "@grapher";
|
|
}
|
|
|
|
declare module "meteor/mongo" {
|
|
export interface Collection {
|
|
astToQuery(ast: DocumentNode, query: GrapherQuery): Mongo.Cursor<any>;
|
|
}
|
|
}
|