summaryrefslogtreecommitdiffstats
path: root/typescript/src/AjaxResponse.ts
blob: 8b578a8def9f7b60fd121aba46f05bb9430db01a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
/* SPDX-License-Identifier: AGPL-3.0-or-later */

import type Pod from "./Pod.js";

export default AjaxResponse;

type AjaxResponse = Readonly<{
  queryresult?: {
    pods?: Pod[];
  };
}>;