mirror of
https://github.com/CamHenlin/MessagesForMacintosh.git
synced 2024-11-23 01:36:14 +00:00
15 lines
294 B
TypeScript
15 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;
|
|
};
|