UNPKG

fnbr

Version:

A library to interact with Epic Games' Fortnite HTTP and XMPP services

14 lines (13 loc) 299 B
import User from './User'; /** * Represents a blocked user */ declare class BlockedUser extends User { /** * Unblocks this user * @throws {UserNotFoundError} The user wasn't found * @throws {EpicgamesAPIError} */ unblock(): Promise<void>; } export default BlockedUser;