@formant/realtime-sdk 0.0.11 → 0.0.14
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.
|
@@ -16,7 +16,6 @@ export interface IResponse<T> {
|
|
|
16
16
|
}
|
|
17
17
|
export declare abstract class BaseClient {
|
|
18
18
|
protected endpoint: string | undefined;
|
|
19
|
-
["constructor"]: typeof BaseClient;
|
|
20
19
|
static retries: number;
|
|
21
20
|
static waitForConnectivity: () => Promise<void>;
|
|
22
21
|
static onResponseError: (error: ResponseError) => Promise<void>;
|
|
@@ -40,4 +39,5 @@ export declare abstract class BaseClient {
|
|
|
40
39
|
protected fetch<T>(path: string, extendedInit?: IRequestInit): Promise<T>;
|
|
41
40
|
protected fetchVerbose<T>(path: string, extendedInit?: IRequestInit): Promise<IResponse<T>>;
|
|
42
41
|
private doFetch;
|
|
42
|
+
private getConstructor;
|
|
43
43
|
}
|