Interface IErrorPageProps

Interface for Page props.

T Another types for the initial data.

U Type of the user.

interface IErrorPageProps {
    error: {
        code: string;
        message: string;
        stack?: string;
    };
    initialData: IInitialDataProps<any>;
    params: any;
    query: any;
}

Hierarchy (view full)

Properties

error: {
    code: string;
    message: string;
    stack?: string;
}
initialData: IInitialDataProps<any>

Initial data from the server.

params: any

Route parameters.

query: any

Data in query string.