warframe-worldstate-parser
Version:
An Open parser for Warframe's Worldstate in Javascript
30 lines (29 loc) • 639 B
text/typescript
import { r as WorldStateObject } from "./WorldStateObject-CIJgXUCx.mjs";
//#region lib/models/VallisCycle.d.ts
/**
* Represents the current Earth Day/Night Cycle
* @augments {WorldStateObject}
*/
declare class VallisCycle extends WorldStateObject {
/**
* Whether or not this it's daytime
*/
isWarm: boolean;
/**
* Current cycle state. One of `warm`, `cold`
*/
state: string;
constructor();
/**
* Whether this event has expired
*/
get expired(): boolean;
/**
* Time remaining string
*/
get timeLeft(): string;
get shortString(): string;
}
//#endregion
export { VallisCycle as t };