ToggleFollowVariables is an interface representing the variables to toggle a follow. It includes a number representing the id of the user to follow.

interface ToggleFollowVariables {
    userId: number;
}

Properties

Properties

userId: number

userId is a number representing the id of the user to follow.