summaryrefslogtreecommitdiffstats
path: root/typescript/src/SubPod.ts
blob: 1e26a87fb8876ffab4349b0c70a69125e1102f80 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
/* SPDX-License-Identifier: AGPL-3.0-or-later */

export default SubPod;

type SubPod = Readonly<{
  img?: {
    src?: string;
    alt?: string;
  };
  plaintext?: string;
}>;