httpsnippet
Version:
HTTP Request snippet generator for *most* languages
20 lines • 531 B
TypeScript
/**
* @description
* HTTP code snippet generator for PHP using curl-ext.
*
* @author
* @AhmadNassri
*
* for any questions or issues regarding the generated code snippet, please open an issue mentioning the author.
*/
import { Client } from '../../targets';
export interface CurlOptions {
closingTag?: boolean;
maxRedirects?: number;
namedErrors?: boolean;
noTags?: boolean;
shortTags?: boolean;
timeout?: number;
}
export declare const curl: Client<CurlOptions>;
//# sourceMappingURL=client.d.ts.map