UNPKG

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