Interface IInitialDataProps<U>

Interface for Page props initialData.

U Type of user prop.

interface IInitialDataProps<U> {
    dev: boolean;
    timestamp: number;
    user: U;
}

Type Parameters

  • U

Properties

Properties

dev: boolean

Indicates if the app is in DEV mode.

timestamp: number

Render timestamp.

user: U

User data.