version.d.ts 294 B

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