warframe-worldstate-parser
Version:
An Open parser for Warframe's Worldstate in Javascript
22 lines (21 loc) • 485 B
TypeScript
/**
* @typedef {WorldstateObject} DuviriCycle
* @augments {WorldstateObject}
*/
export default class DuviriCycle extends WorldstateObject {
constructor({ duviriChoices }: {
duviriChoices: any;
});
/**
* Current stage key
* @type {string}
*/
state: string;
/**
* Choice options for this Cycle
*/
choices: any;
id: string;
}
export type DuviriCycle = WorldstateObject;
import WorldstateObject from './WorldstateObject.js';