warframe-worldstate-parser
Version:
An Open parser for Warframe's Worldstate in Javascript
14 lines (13 loc) • 548 B
JavaScript
/**
* External mission data retrieved from https://10o.io/kuvalog.json
* @typedef {object} ExternalMission
* @property {Date} activation start time
* @property {Date} expiry end timer
* @property {string} node formatted node name with planet
* @property {string} enemy Enemy on tile
* @property {string} type Mission type of node
* @property {boolean} archwing whether or not the tile requires archwing
* @property {boolean} sharkwing whether or not the tile requires
* sumbersible archwing
*/
export default class ExternalMission {}