UNPKG

fnbr

Version:

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

16 lines (15 loc) 503 B
import type { AuthSessionStoreKey } from '../../resources/enums'; /** * Represents an error that is thrown when an authentication does not exist in the client's session store */ declare class AuthenticationMissingError extends Error { /** * The authentication type that does not exist */ type: AuthSessionStoreKey; /** * @param type The authentication type that does not exist */ constructor(type: AuthSessionStoreKey); } export default AuthenticationMissingError;