@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.
12 lines • 452 B
TypeScript
import type { Variable, BrunoVariables } from '../types';
interface BrunoVars {
req: BrunoVariables;
res: BrunoVariables;
}
export declare const fromOpenCollectionVariables: (variables: Variable[] | undefined) => BrunoVars;
export declare const toOpenCollectionVariables: (vars: BrunoVars | {
req?: BrunoVariables;
res?: BrunoVariables;
} | null | undefined) => Variable[] | undefined;
export {};
//# sourceMappingURL=variables.d.ts.map