version.d.ts 294 Bytes
Newer Older
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 const version: string;

/**
 * An object containing the components of the GraphQL.js version string
 */
export const versionInfo: {
  major: number;
  minor: number;
  patch: number;
  preReleaseTag: number | null;
};