@arc-publishing/sdk-identity
Version:
JS Identity SDK for working with Identity API
16 lines • 671 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.isFacebookLoginResponse = exports.isGoogleCredentialResponse = exports.isLegacyGoogleSetting = void 0;
function isLegacyGoogleSetting(object) {
return object.auth2 !== undefined;
}
exports.isLegacyGoogleSetting = isLegacyGoogleSetting;
function isGoogleCredentialResponse(object) {
return object.credential !== undefined;
}
exports.isGoogleCredentialResponse = isGoogleCredentialResponse;
function isFacebookLoginResponse(object) {
return object.status !== undefined;
}
exports.isFacebookLoginResponse = isFacebookLoginResponse;
//# sourceMappingURL=socialSignOnTypes.js.map