mirror of
https://git.disroot.org/wolfree/wolfree-dockerfile
synced 2025-01-08 13:01:43 +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;
|
||
|
}>;
|