warframe-worldstate-parser
Version:
An Open parser for Warframe's Worldstate in Javascript
28 lines (27 loc) • 726 B
text/typescript
import { r as WorldStateObject } from "./WorldStateObject-CIJgXUCx.mjs";
import { t as CetusCycle } from "./CetusCycle-LdcGs_wx.mjs";
//#region lib/models/CambionCycle.d.ts
/**
* Represents the current Cambion Drift Fass/Vome Cycle
* @augments {WorldStateObject}
*/
declare class CambionCycle extends WorldStateObject {
/**
* Time remaining string in the current cycle
*/
timeLeft: string;
/**
* Current cycle state. One of 'fass', 'vome'
*/
state: string;
/**
* @param {CetusCycle} cetusCycle Match data from cetus cycle for data
*/
constructor(cetusCycle: CetusCycle);
/**
* Get whether the event has expired
*/
get expired(): boolean;
}
//#endregion
export { CambionCycle as t };