botbook/node_modules/@azure/msal-common/dist/network/INetworkModule.mjs

21 lines
664 B
JavaScript
Raw Normal View History

2024-09-04 13:13:15 -03:00
/*! @azure/msal-common v14.14.2 2024-08-28 */
'use strict';
import { createClientAuthError } from '../error/ClientAuthError.mjs';
import { methodNotImplemented } from '../error/ClientAuthErrorCodes.mjs';
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
const StubbedNetworkModule = {
sendGetRequestAsync: () => {
return Promise.reject(createClientAuthError(methodNotImplemented));
},
sendPostRequestAsync: () => {
return Promise.reject(createClientAuthError(methodNotImplemented));
},
};
export { StubbedNetworkModule };
//# sourceMappingURL=INetworkModule.mjs.map