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.
|
* Represents the credentials used to access the platform.
|
||||||
*/
|
*/
|
||||||
export class Credentials {
|
export default class Credentials {
|
||||||
/**
|
/**
|
||||||
* Username
|
* Username
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -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.
|
||||||
|
|
|
@ -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
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue