@zhongguo168a/yxeditor-common 0.0.106 → 0.0.107
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/index.d.ts +2 -2
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -723,8 +723,8 @@ declare class Dictionary<K = string, V = any> {
|
|
|
723
723
|
* 克隆自身所有项到【target】对象,并返回【target】对象
|
|
724
724
|
* @param target
|
|
725
725
|
*/
|
|
726
|
-
clone(target: Dictionary): Dictionary
|
|
727
|
-
resetByDict(dict: Dictionary): void;
|
|
726
|
+
clone(target: Dictionary<K, V>): Dictionary<K, V>;
|
|
727
|
+
resetByDict(dict: Dictionary<K, V>): void;
|
|
728
728
|
onSet(caller: any, handler: (key: K, value: V) => void): void;
|
|
729
729
|
onDelete(caller: any, handler: (key: K, value: V) => void): void;
|
|
730
730
|
/**
|