import { ApiAuthInterface } from './api.auth.interface'; export interface SlabsApiRequestInterface { method: 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE'; path: string; body?: unknown; auth?: ApiAuthInterface; headers?: Record; }