github-pages-deploy-action/node_modules/graphql/version.d.ts

15 lines
294 B
TypeScript
Raw Normal View History

2020-03-07 11:45:40 +08:00
/**
* 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;
};