summaryrefslogtreecommitdiffstats
path: root/typescript/src/AjaxResponse.ts
diff options
context:
space:
mode:
Diffstat (limited to 'typescript/src/AjaxResponse.ts')
-rw-r--r--typescript/src/AjaxResponse.ts11
1 files changed, 11 insertions, 0 deletions
diff --git a/typescript/src/AjaxResponse.ts b/typescript/src/AjaxResponse.ts
new file mode 100644
index 0000000..8b578a8
--- /dev/null
+++ b/typescript/src/AjaxResponse.ts
@@ -0,0 +1,11 @@
+/* SPDX-License-Identifier: AGPL-3.0-or-later */
+
+import type Pod from "./Pod.js";
+
+export default AjaxResponse;
+
+type AjaxResponse = Readonly<{
+ queryresult?: {
+ pods?: Pod[];
+ };
+}>;