aboutsummaryrefslogtreecommitdiffstats
path: root/src/ts/types/cover.ts
blob: 2a565efcbd98830c90f6296a5240d37b9bcccd8b (plain)
1
2
3
4
5
6
7
8
9
export type Cover = {
  altText: string;
  sourceUrl: string;
  title: string;
} | null;

export type CoverResponse = {
  node: Cover;
} | null;