Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ interface Options {

const proxyAgent = new EnvHttpProxyAgent();

class Client {
class SmeeClient {
#source: string;
#target: string;
#fetch: typeof undiciFetch;
Expand Down Expand Up @@ -243,6 +243,7 @@ class Client {
}

export {
Client as default,
Client as "module.exports", // For require(esm) compatibility
SmeeClient as default,
SmeeClient as "module.exports", // For require(esm) compatibility
SmeeClient,
};