This commit is contained in:
Gregory Schier
2026-03-02 07:52:08 -08:00
parent fbf0473b20
commit 0b250ff5b5
4 changed files with 20 additions and 8 deletions

View File

@@ -206,7 +206,10 @@ export const plugin: PluginDefinition = {
// Create snippet generator
const snippet = new HTTPSnippet(harRequest);
const generateSnippet = (target: string, client: string): string => {
const result = snippet.convert(target as any, client);
const result = snippet.convert(
target as Parameters<typeof snippet.convert>[0],
client as Parameters<typeof snippet.convert>[1],
);
return (Array.isArray(result) ? result.join('\n') : result || '').replace(/\r\n/g, '\n');
};