We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de78d6e commit c388079Copy full SHA for c388079
1 file changed
src/index.js
@@ -1,4 +1,16 @@
1
// @ts-check
2
+/**
3
+ * Support for type checking and intellisense in vscode:
4
+ * @typedef {import("./solr").SolrConfig} SolrConfig
5
+ * @typedef {import("./solr").SolrData} SolrData
6
+ * @typedef {import("./solr").SolrDocument} SolrDocument
7
+ * @typedef {import("./solr").SolrResponse} SolrResponse
8
+ * @typedef {import("./solr").DeleteQuery} DeleteQuery
9
+ * @typedef {import("./solr").FieldProperties} FieldProperties
10
+ * @typedef {import("./solr").FieldTypeProperties} FieldTypeProperties
11
+ * @typedef {import("./solr").SolrQuery} SolrQuery
12
+ */
13
+
14
const url = require("url")
15
const { default: axios } = require("axios")
16
0 commit comments