DefinitelyTyped/graphql/language/source.d.ts
TonyYang 16f19c95e9 [graphql] Meet types-2.0 style (#13831)
* Meet type-2.0 style

* Fix the exports
2017-01-11 07:03:37 -08:00

6 lines
106 B
TypeScript

export class Source {
body: string;
name: string;
constructor(body: string, name?: string);
}