Add default export
parent
59d40b8ba3
commit
b2fa27281c
|
@ -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
|
||||
*/
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
*/
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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.
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue