interface UserState {
    data: User;
    error: string;
    isAuthenticate: boolean;
    isLoading: boolean;
    users: IPaginatedData<IUser>;
}

Properties

data: User
error: string
isAuthenticate: boolean
isLoading: boolean