mirror of
https://github.com/DefectingCat/DefectingCat.github.io
synced 2025-07-15 08:41:37 +00:00
7 lines
167 B
TypeScript
7 lines
167 B
TypeScript
import { NextPage } from 'next';
|
|
import { ReactElement } from 'react';
|
|
|
|
export type NextPageWithLayout = {
|
|
getLayout(page: ReactElement): JSX.Element;
|
|
} & NextPage;
|