httpyac
Version:
HTTP/REST CLI Client for *.http files
7 lines (6 loc) • 418 B
TypeScript
import { Command } from 'commander';
import * as models from '../../models';
import { SendOptions } from './options';
export declare function sendCommand(): Command;
export declare function convertCliOptionsToContext(cliOptions: SendOptions): Omit<models.HttpFileSendContext, "httpFile">;
export declare function initRequestLogger(cliOptions: SendOptions, context: Omit<models.HttpFileSendContext, 'httpFile'>): void;