bungie-net-core
Version:
An easy way to interact with the Bungie.net API
14 lines (13 loc) • 463 B
TypeScript
/** @see {@link https://bungie-net.github.io/#/components/schemas/Destiny.Advanced.AwaResponseReason} */
export declare const AwaResponseReason: {
readonly None: 0;
/** User provided an answer */
readonly Answered: 1;
/**
* The HTTP request timed out, a new request may be made and an answer may still be
* provided.
*/
readonly TimedOut: 2;
/** This request was replaced by another request. */
readonly Replaced: 3;
};