mirror of
https://github.com/rjNemo/federation
synced 2026-06-08 19:26:40 +00:00
14 lines
294 B
TypeScript
14 lines
294 B
TypeScript
/**
|
|
* 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;
|
|
};
|