mirror of
https://git.disroot.org/wolfree/wolfree-dockerfile
synced 2025-01-07 20:41:21 +01:00
13 lines
234 B
TypeScript
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[];
|
|
}>;
|