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

import type State from "./State.js";
import type SubPod from "./SubPod.js";

export default Pod;

type Pod = Readonly<{
  title?: string;
  states?: State[];
  subpods?: SubPod[];
}>;