warframe-worldstate-parser
Version:
An Open parser for Warframe's Worldstate in Javascript
21 lines (20 loc) • 618 B
TypeScript
/**
* Represents the current Cambion Drift Fass/Vome Cycle
* @augments {WorldstateObject}
* @property {string} timeLeft time rendering of amount of time left
*/
export default class CambionCycle extends WorldstateObject {
/**
* @param {CetusCycle} cetusCycle Match data from cetus cycle for data
*/
constructor(cetusCycle: CetusCycle);
state: string;
active: string;
id: string;
/**
* Get whether the event has expired
* @returns {boolean} whether the event has expired
*/
getExpired(): boolean;
}
import WorldstateObject from './WorldstateObject.js';