food-grapqhl-client/src/graphql.d.ts

7 lines
139 B
TypeScript
Raw Normal View History

2019-02-10 15:36:54 +00:00
// graphql.d.ts file
declare module '*.graphql' {
import {DocumentNode} from 'graphql';
const value: DocumentNode;
export = value;
}