aboutsummaryrefslogtreecommitdiffstats
path: root/src/ts/types/taxonomies.ts
blob: dd4585226a3431e1261da045db98cb7ee32c4063 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { Cover } from './cover';

type TaxonomyPreview = {
  databaseId: number;
  id: string;
  slug: string;
  title: string;
};

export type SubjectPreview = TaxonomyPreview & {
  cover: Cover;
};

export type ThematicPreview = TaxonomyPreview;