httpsnippet-lite
Version:
HTTP Request snippet generator for *most* languages
21 lines (20 loc) • 516 B
TypeScript
/**
* @description
*
* HTTP code snippet generator for the Shell using cURL.
*
* @author
* @AhmadNassri
*
* for any questions or issues regarding the generated code snippet, please open an issue mentioning the author.
*/
import type { Client } from '../../targets.js';
export interface CurlOptions {
binary?: boolean;
globOff?: boolean;
indent?: string | false;
insecureSkipVerify?: boolean;
prettifyJson?: boolean;
short?: boolean;
}
export declare const curl: Client<CurlOptions>;