Interface UpdateLocationOnRegister

Interface for the 'register' update location action.

interface UpdateLocationOnRegister {
    action: "register";
    child_app: string;
    parent_app?: string;
    path?: string;
    query?: Record<string, any>;
}

Hierarchy (View Summary)

Properties

action: "register"

The action type.

child_app: string

The child application identifier.

parent_app?: string

The parent application identifier (optional).

path?: string

The path of the route (optional).

query?: Record<string, any>

The query parameters of the route (optional).