From 3487f0b1630d9c2eb03d7e1881d5cd3b6d827e86 Mon Sep 17 00:00:00 2001 From: Jon Ursenbach Date: Wed, 25 Oct 2023 15:38:21 -0700 Subject: [PATCH] fix: export `addClientPlugin` --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 0aa4b4918..763e94ac0 100644 --- a/src/index.ts +++ b/src/index.ts @@ -13,7 +13,7 @@ import { reducer } from './helpers/reducer.js'; import { targets } from './targets/index.js'; export { availableTargets, extname } from './helpers/utils.js'; -export { addTarget, addTargetClient } from './targets/index.js'; +export { addTarget, addTargetClient, addClientPlugin } from './targets/index.js'; /** is this wrong? yes. according to the spec (http://www.softwareishard.com/blog/har-12-spec/#postData) it's technically wrong since `params` and `text` are (by the spec) mutually exclusive. However, in practice, this is not what is often the case. *