mirror of
https://git.disroot.org/wolfree/wolfree-dockerfile
synced 2025-01-07 20:41:21 +01:00
12 lines
176 B
TypeScript
12 lines
176 B
TypeScript
/* SPDX-License-Identifier: AGPL-3.0-or-later */
|
|
|
|
export default SubPod;
|
|
|
|
type SubPod = Readonly<{
|
|
img?: {
|
|
src?: string;
|
|
alt?: string;
|
|
};
|
|
plaintext?: string;
|
|
}>;
|