@tspro/ts-utils-lib 3.0.0 → 3.1.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.
- package/CHANGELOG.md +4 -0
- package/dist/index.d.ts +10 -1
- package/dist/index.es5.iife.js +1 -1
- package/dist/index.es5.polyfilled.iife.js +1 -1
- package/dist/index.js +27 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +27 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -1535,6 +1535,15 @@ declare class LinkedList<V> extends BaseContainer implements Iterable<V> {
|
|
|
1535
1535
|
clone(): LinkedList<V>;
|
|
1536
1536
|
}
|
|
1537
1537
|
|
|
1538
|
+
declare class CallTracker {
|
|
1539
|
+
private counts;
|
|
1540
|
+
getCallCountFor(value: any): number;
|
|
1541
|
+
hasBeenCalledWith(value: any): boolean;
|
|
1542
|
+
private static _default;
|
|
1543
|
+
static getCallCountFor(value: any): number;
|
|
1544
|
+
static hasBeenCalledWith(value: any): boolean;
|
|
1545
|
+
}
|
|
1546
|
+
|
|
1538
1547
|
declare function getLibInfo(): string;
|
|
1539
1548
|
|
|
1540
|
-
export { AnchoredRect, index$7 as Assert, BaseContainer, BiMap, cookies as Cookies, DefaultArray, DefaultEqualityFn, device as Device, type EqualityFn, index$6 as Guard, IndexArray, type KVComponent, LRUCache, LinkedList, MultiContainer, Rect, SignedIndexArray, Stack, TriMap, UniMap, index as Utils, ValueSet, Vec, asMulti, getLibInfo };
|
|
1549
|
+
export { AnchoredRect, index$7 as Assert, BaseContainer, BiMap, CallTracker, cookies as Cookies, DefaultArray, DefaultEqualityFn, device as Device, type EqualityFn, index$6 as Guard, IndexArray, type KVComponent, LRUCache, LinkedList, MultiContainer, Rect, SignedIndexArray, Stack, TriMap, UniMap, index as Utils, ValueSet, Vec, asMulti, getLibInfo };
|