Skip to content

Commit f681e6a

Browse files
committed
Renaming symbols
1 parent 1b0a6d8 commit f681e6a

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

packages-exp/auth-exp/src/api/authentication/token.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
import { querystring } from '@firebase/util';
2121

22-
import { HttpMethod, performFetchWithErrorHandling } from '../';
22+
import { _performFetchWithErrorHandling, HttpMethod } from '../';
2323
import { Auth } from '../../model/auth';
2424

2525
export const _ENDPOINT = 'v1/token';
@@ -42,7 +42,7 @@ export async function requestStsToken(
4242
auth: Auth,
4343
refreshToken: string
4444
): Promise<RequestStsTokenResponse> {
45-
const response = await performFetchWithErrorHandling<
45+
const response = await _performFetchWithErrorHandling<
4646
RequestStsTokenServerResponse
4747
>(auth, {}, () => {
4848
const body = querystring({

packages-exp/auth-exp/src/api/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export async function _performApiRequest<T, V>(
5959
request?: T,
6060
customErrorMap: Partial<ServerErrorMap<ServerError>> = {}
6161
): Promise<V> {
62-
return performFetchWithErrorHandling(auth, customErrorMap, () => {
62+
return _performFetchWithErrorHandling(auth, customErrorMap, () => {
6363
let body = {};
6464
let params = {};
6565
if (request) {
@@ -92,7 +92,7 @@ export async function _performApiRequest<T, V>(
9292
});
9393
}
9494

95-
export async function performFetchWithErrorHandling<V>(
95+
export async function _performFetchWithErrorHandling<V>(
9696
auth: Auth,
9797
customErrorMap: Partial<ServerErrorMap<ServerError>>,
9898
fetchFn: () => Promise<Response>

packages-exp/auth-exp/src/core/user/user_impl.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
* limitations under the License.
1616
*/
1717

18-
import { FirebaseError } from '@firebase/util';
1918
import { expect, use } from 'chai';
2019
import * as chaiAsPromised from 'chai-as-promised';
2120

0 commit comments

Comments
 (0)