/opt/canhelp/node_modules/next/dist/pages
NameSizeModeActions
_app.d.ts9810644editdlrm
_app.js15540644editdlrm
_app.js.map18840644editdlrm
_document.d.ts30000644editdlrm
_document.js421520644editdlrm
_document.js.map617820644editdlrm
_error.d.ts6600644editdlrm
_error.js61360644editdlrm
_error.js.map68350644editdlrm
Edit: /opt/canhelp/node_modules/next/dist/pages/_error.d.ts (660B)
import React from 'react'; import type { NextPageContext } from '../shared/lib/utils'; export type ErrorProps = { statusCode: number; hostname?: string; title?: string; withDarkMode?: boolean; }; declare function _getInitialProps({ req, res, err, }: NextPageContext): Promise | ErrorProps; /** * `Error` component used for handling errors. */ export default class Error

extends React.Component

{ static displayName: string; static getInitialProps: typeof _getInitialProps; static origGetInitialProps: typeof _getInitialProps; render(): import("react/jsx-runtime").JSX.Element; } export {};