export type StartRequestOptions = { method: string; url: string; headers?: Record; body?: unknown; }; export type FinishRequestOptions = { id: string; status?: number; headers?: Record; body?: unknown; error?: string; };