warframe-worldstate-parser
Version:
An Open parser for Warframe's Worldstate in Javascript
20 lines (19 loc) • 573 B
TypeScript
export default class SteelPathOffering {
constructor({ locale }: {
locale: any;
});
currentReward: any;
activation: Date;
expiry: Date;
remaining: any;
rotation: any;
evergreens: any;
/**
* General data pertaining to incursions
* @type {object}
* @property {string} id Identifier for steel path incursion based on start of day.
* @property {Date} activation when the current incursions became active
* @property {Date} expiry when the current incursions become inactive
*/
incursions: object;
}