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. * Represents the credentials used to access the platform.
*/ */
export class Credentials { export default class Credentials {
/** /**
* Username * Username
*/ */

View File

@ -3,7 +3,7 @@
/** /**
* Information of a game/mod on the platform. * Information of a game/mod on the platform.
*/ */
export class GameInfo { export default class GameInfo {
//#region Properties //#region Properties
/** /**
* Unique ID of the game on the platform. * 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. * Object obtained in response to an attempt to login to the portal.
*/ */
export class LoginResult { export default class LoginResult {
/** /**
* Result of the login operation * 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. * Convert prefixes and platform tags from string to ID and vice versa.
*/ */
export class PrefixParser { export default class PrefixParser {
//#region Private methods //#region Private methods
/** /**
* @private * @private

View File

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