@piarre/ts-freebox
Version:
13 lines (12 loc) • 570 B
JavaScript
// src/@types/app.ts
var LoginStatus = /* @__PURE__ */ ((LoginStatus2) => {
LoginStatus2["unknown"] = "the app_token is invalid or has been revoked";
LoginStatus2["pending"] = "the user has not confirmed the authorization request yet";
LoginStatus2["timeout"] = "the user did not confirmed the authorization within the given time";
LoginStatus2["granted"] = "the app_token is valid and can be used to open a session";
LoginStatus2["denied"] = "the user denied the authorization request";
return LoginStatus2;
})(LoginStatus || {});
export {
LoginStatus
};