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; };