mirror of
https://github.com/supabase/supabase.git
synced 2026-07-05 06:14:33 +08:00
12 lines
294 B
TypeScript
12 lines
294 B
TypeScript
import { NextPage } from 'next'
|
|
import { AppProps } from 'next/app'
|
|
import { ReactElement, ReactNode } from 'react'
|
|
|
|
export type AppPropsWithLayout = AppProps & {
|
|
Component: NextPageWithLayout
|
|
}
|
|
|
|
export type NextPageWithLayout = NextPage & {
|
|
getLayout?: (page: ReactElement) => ReactNode
|
|
}
|