mirror of
https://github.com/MeowLynxSea/Proksea.git
synced 2025-07-11 03:44:39 +00:00
21 lines
653 B
JavaScript
21 lines
653 B
JavaScript
/*! @azure/msal-common v14.12.0 2024-06-10 */
|
|
'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
|