@kemu-io/hs 0.5.2 → 0.5.3
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/cjs/service.d.ts +1 -1
- package/mjs/service.d.ts +1 -1
- package/package.json +1 -1
package/cjs/service.d.ts
CHANGED
|
@@ -500,7 +500,7 @@ export type PrivateMethods = {
|
|
|
500
500
|
*/
|
|
501
501
|
getEdgeApiKey: () => Promise<string | undefined>;
|
|
502
502
|
};
|
|
503
|
-
export type InternalServiceInstance = KemuService<
|
|
503
|
+
export type InternalServiceInstance<T extends WidgetState = WidgetState> = KemuService<T> & PrivateMethods;
|
|
504
504
|
declare const _default: KemuServiceConstructor;
|
|
505
505
|
|
|
506
506
|
export {
|
package/mjs/service.d.ts
CHANGED
|
@@ -500,7 +500,7 @@ export type PrivateMethods = {
|
|
|
500
500
|
*/
|
|
501
501
|
getEdgeApiKey: () => Promise<string | undefined>;
|
|
502
502
|
};
|
|
503
|
-
export type InternalServiceInstance = KemuService<
|
|
503
|
+
export type InternalServiceInstance<T extends WidgetState = WidgetState> = KemuService<T> & PrivateMethods;
|
|
504
504
|
declare const _default: KemuServiceConstructor;
|
|
505
505
|
|
|
506
506
|
export {
|