Add default export

pull/73/head
MillenniumEarl 2021-02-14 12:27:51 +01:00
parent 59d40b8ba3
commit b2fa27281c
5 changed files with 5 additions and 5 deletions

View File

@ -6,7 +6,7 @@ import { getF95Token } from "../network-helper.js";
/**
* Represents the credentials used to access the platform.
*/
export class Credentials {
export default class Credentials {
/**
* Username
*/

View File

@ -3,7 +3,7 @@
/**
* Information of a game/mod on the platform.
*/
export class GameInfo {
export default class GameInfo {
//#region Properties
/**
* Unique ID of the game on the platform.

View File

@ -3,7 +3,7 @@
/**
* Object obtained in response to an attempt to login to the portal.
*/
export class LoginResult {
export default class LoginResult {
/**
* Result of the login operation
*/

View File

@ -6,7 +6,7 @@ import shared = require("../shared.js");
/**
* Convert prefixes and platform tags from string to ID and vice versa.
*/
export class PrefixParser {
export default class PrefixParser {
//#region Private methods
/**
* @private

View File

@ -3,7 +3,7 @@
/**
* Class containing the data of the user currently connected to the F95Zone platform.
*/
export class UserData {
export default class UserData {
/**
* User name.
*/