@neovici/cosmoz-utils 5.1.0 → 5.4.0
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.
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const useImperativeApi: <A, D
|
|
1
|
+
export declare const useImperativeApi: <A, D = unknown>(api: A, values: D[]) => void;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const notifyProperty: <
|
|
1
|
+
declare const notifyProperty: <K extends string, T extends HTMLElement & { [key in K]?: unknown; }>(host: T, name: K, value: T[K]) => void, useNotifyProperty: <T extends HTMLElement, K extends Extract<keyof T, string>, V extends T[K]>(name: K, value: V) => void;
|
|
2
2
|
export { notifyProperty, useNotifyProperty };
|
package/dist/tagged.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const tagged: (strings:
|
|
1
|
+
export declare const tagged: (strings: TemplateStringsArray, ...values: (string | number)[]) => string;
|