summaryrefslogtreecommitdiff
path: root/alarm/node_modules/graphql/version.d.ts
blob: 765329b38bd8dd9a5019123af634a8aa4e668d53 (plain)
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;
};