We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f7680c commit a0c9a49Copy full SHA for a0c9a49
src/index.ts
@@ -1,2 +1,2 @@
1
-export * from './ic-websocket';
2
-export * from './identity';
+export { IcWebSocket, type IcWebSocketConfig, createWsConfig } from './ic-websocket';
+export { generateRandomIdentity } from './identity';
src/utils.ts
@@ -9,7 +9,7 @@ import {
9
reconstruct,
10
} from "@dfinity/agent";
11
import { Principal } from "@dfinity/principal";
12
-import logger from "./logger";
+import { logger } from "./logger";
13
14
const areBuffersEqual = (buf1: ArrayBuffer, buf2: ArrayBuffer): boolean => {
15
return compare(buf1, buf2) === 0;
0 commit comments