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 |
Classes
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
AxiosResponse
Example
const timeServerQuery = new TimeLookup;
const currentTime = await timeServerQuery.execute();