@sap/adp-cf
Version:
cf service logic for all yeoman generators
16 lines • 374 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CfAuthState = void 0;
class CfAuthState {
setCfAuthSuccess() {
this.cfAuth = true;
}
getCfAuth() {
return this.cfAuth;
}
resetCfAuthState() {
this.cfAuth = false;
}
}
exports.CfAuthState = CfAuthState;
//# sourceMappingURL=CfAuthState.js.map