msal
Version:
Microsoft Authentication Library for js
24 lines • 672 B
JavaScript
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.buildResponseStateOnly = void 0;
function buildResponseStateOnly(state) {
return {
uniqueId: "",
tenantId: "",
tokenType: "",
idToken: null,
idTokenClaims: null,
accessToken: "",
scopes: null,
expiresOn: null,
account: null,
accountState: state,
fromCache: false
};
}
exports.buildResponseStateOnly = buildResponseStateOnly;
//# sourceMappingURL=AuthResponse.js.map
;