mirror of
https://git.disroot.org/wolfree/wolfree-dockerfile
synced 2025-06-06 00:49:20 +02: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[];
|
|
}>;
|