UNPKG

fnbr

Version:

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

16 lines (15 loc) 302 B
import type Client from './Client'; /** * Represents the base class of many other classes */ declare abstract class Base { /** * The main client */ readonly client: Client; /** * @param client The main client */ constructor(client: Client); } export default Base;