File size: 319 Bytes
d4b85c0
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/**
 * A string containing the version of the GraphQL.js library
 */
export declare const version: string;
/**
 * An object containing the components of the GraphQL.js version string
 */
export declare const versionInfo: Readonly<{
  major: number;
  minor: number;
  patch: number;
  preReleaseTag: string | null;
}>;