Interface UpdateLocationOnUpdate

Interface for the 'update' update location action.

interface UpdateLocationOnUpdate {
    action: "update";
    routes: Record<
        string,
        Omit<LocationRoute, "is_restoring" | "is_mounted" | "is_inactive">,
    >;
}

Hierarchy (View Summary)

Properties

Properties

action: "update"

The action type.

routes: Record<
    string,
    Omit<LocationRoute, "is_restoring" | "is_mounted" | "is_inactive">,
>

The routes to be updated.