Class

TimeLookup

TimeLookup(querynullable)

Contains the query to be sent to the Slay the Spire time server

Constructor

# new TimeLookup(querynullable)

Construct a query to the Slay the Spire time server to later be executed
Parameters:
Name Type Attributes Description
query AxiosRequestConfig <nullable>
Optional axios request config to override default functionality

View Source SlayTheSpireAPI/TimeServerHelpers/TimeLookup.ts, line 13

Classes

TimeLookup

Methods

# async execute() → {AxiosResponse}

Execute query and make HTTP/S request to the Slay the Spire time server to obtain the current time, in seconds, since January 1, 1970 00:00:00

View Source SlayTheSpireAPI/TimeServerHelpers/TimeLookup.ts, line 29

AxiosResponse
Example
const timeServerQuery = new TimeLookup;
const currentTime = await timeServerQuery.execute();