Fix lint & typescript checks

This commit is contained in:
Bikram Choudhury
2025-10-28 18:05:05 +05:30
parent 5ba7ce2f10
commit 58e187aeb2
62 changed files with 2376 additions and 2413 deletions

View File

@@ -83,7 +83,7 @@ export async function armRequestWithoutPolling<T>({
method,
headers,
body: requestBody ? JSON.stringify(requestBody) : undefined,
signal
signal,
});
if (!response.ok) {
@@ -119,7 +119,7 @@ export async function armRequest<T>({
queryParams,
contentType,
customHeaders,
signal
signal,
}: Options): Promise<T> {
const armRequestResult = await armRequestWithoutPolling<T>({
host,
@@ -130,7 +130,7 @@ export async function armRequest<T>({
queryParams,
contentType,
customHeaders,
signal
signal,
});
const operationStatusUrl = armRequestResult.operationStatusUrl;
if (operationStatusUrl) {