Skip to content

Instantly share code, notes, and snippets.

import { isObjectEmpty } from "@shared/utils/helpers";
interface RequestConfig {
url: string;
options: RequestInit;
params?: Record<string, string>;
isAuth?: boolean;
signal?: AbortSignal;
}