wolfree-dockerfile/typescript/src/Pod.ts
2023-09-27 11:34:23 +00:00

13 lines
234 B
TypeScript

/* 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[];
}>;