bugyo-cloud-client
Version:
HTTP client for Bugyo Cloud
12 lines • 418 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.isAuthenticationResponse = void 0;
/** タイプガード */
const isAuthenticationResponse = (x) => {
return (typeof x === "object" &&
x !== null &&
"RedirectURL" in x &&
typeof x.RedirectURL === "string");
};
exports.isAuthenticationResponse = isAuthenticationResponse;
//# sourceMappingURL=types.js.map