aboutsummaryrefslogtreecommitdiffstats
path: root/src/ts/types/homepage.ts
blob: 404aa38393e04348d97480c8f822c6dd6a01ad45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
export type fetchHomePageReturn = () => Promise<HomePageResponse>;

export type HomePageResponse = {
  nodeByUri: {
    id: string;
    content: string;
  };
};

export type getHomePageReturn = () => Promise<HomePage>;

export type HomePage = {
  id: string;
  content: string;
};

export type HomePageProps = {
  data: HomePage;
};