summaryrefslogtreecommitdiff
path: root/school/node_modules/graphql/version.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'school/node_modules/graphql/version.d.ts')
-rw-r--r--school/node_modules/graphql/version.d.ts14
1 files changed, 14 insertions, 0 deletions
diff --git a/school/node_modules/graphql/version.d.ts b/school/node_modules/graphql/version.d.ts
new file mode 100644
index 0000000..765329b
--- /dev/null
+++ b/school/node_modules/graphql/version.d.ts
@@ -0,0 +1,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;
+};