@usebruno/converters
Version:
The converters package is responsible for converting collections from one format to a Bruno collection. It can be used as a standalone package or as a part of the Bruno framework.
4 lines • 358 B
TypeScript
import type { HttpRequestParam, BrunoHttpRequestParam } from '../types';
export declare const fromOpenCollectionParams: (params: HttpRequestParam[] | undefined) => BrunoHttpRequestParam[];
export declare const toOpenCollectionParams: (params: BrunoHttpRequestParam[] | null | undefined) => HttpRequestParam[] | undefined;
//# sourceMappingURL=params.d.ts.map