UNPKG

294 BTypeScriptView Raw
1/**
2 * A string containing the version of the GraphQL.js library
3 */
4export const version: string;
5
6/**
7 * An object containing the components of the GraphQL.js version string
8 */
9export const versionInfo: {
10 major: number;
11 minor: number;
12 patch: number;
13 preReleaseTag: number | null;
14};