aboutsummaryrefslogtreecommitdiffstats
path: root/src/ts/types/app.ts
blob: b66381234ab5c6dc90c38911b6c22cd2f322f0e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
import { NextPage } from 'next';
import { AppProps } from 'next/app';
import { ReactElement, ReactNode } from 'react';

export type NextPageWithLayout = NextPage & {
  getLayout?: (page: ReactElement) => ReactNode;
};

export type AppPropsWithLayout = AppProps & {
  Component: NextPageWithLayout;
};