import type { HttpRequest } from '@yaakapp/api'; import { PairOrBulkEditor } from './core/PairOrBulkEditor'; type Props = { forceUpdateKey: string; urlParameters: HttpRequest['headers']; onChange: (headers: HttpRequest['urlParameters']) => void; }; export function UrlParametersEditor({ urlParameters, forceUpdateKey, onChange }: Props) { return ( ); }