wolfree-dockerfile/typescript/src/Pod.ts

13 lines
234 B
TypeScript
Raw Normal View History

2023-09-27 13:34:23 +02:00
/* 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[];
}>;