@zhongguo168a/yxeditor-common 0.0.133 → 0.0.141
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 +3 -1
- package/dist/index.esm.js +322 -447
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -707,8 +707,10 @@ declare class ListSource extends EventDispatcher {
|
|
|
707
707
|
}
|
|
708
708
|
|
|
709
709
|
declare class DictIterator {
|
|
710
|
-
break(): void;
|
|
710
|
+
break(reason?: any): void;
|
|
711
711
|
isBreak(): boolean;
|
|
712
|
+
getReason(): any;
|
|
713
|
+
protected _reason: any;
|
|
712
714
|
protected _isBreak: any;
|
|
713
715
|
}
|
|
714
716
|
declare class Dictionary<K = string, V = any> {
|