@elevenlabs/convai-widget-core 0.0.8 → 0.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/contexts/server-location.d.ts +1 -2
- package/dist/index.js +946 -899
- package/dist/mocks/browser.d.ts +1 -0
- package/dist/types/config.d.ts +27 -0
- package/package.json +2 -2
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ReadonlySignal } from "@preact/signals";
|
|
2
2
|
import { ComponentChildren } from "preact";
|
|
3
|
-
|
|
3
|
+
import { Location } from "../types/config";
|
|
4
4
|
interface ServerLocationProviderProps {
|
|
5
5
|
children: ComponentChildren;
|
|
6
6
|
}
|
|
@@ -10,5 +10,4 @@ export declare function useServerLocation(): {
|
|
|
10
10
|
serverUrl: ReadonlySignal<string>;
|
|
11
11
|
webSocketUrl: ReadonlySignal<string>;
|
|
12
12
|
};
|
|
13
|
-
export declare function parseLocation(location?: string): Location;
|
|
14
13
|
export {};
|