zavadil-ts-common 1.1.25 → 1.1.26
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 +4 -3
- package/dist/type/Stats.d.ts +2 -1
- package/package.json +1 -1
- package/src/type/Stats.ts +4 -1
package/dist/index.d.ts
CHANGED
@@ -64,10 +64,11 @@ type QueueStats = {
|
|
64
64
|
loaded: number;
|
65
65
|
state: string;
|
66
66
|
};
|
67
|
-
type
|
67
|
+
type CacheStats = {
|
68
68
|
cachedItems: number;
|
69
69
|
capacity: number;
|
70
|
-
};
|
70
|
+
};
|
71
|
+
type HashCacheStats = CacheStats & {};
|
71
72
|
|
72
73
|
declare class ObjectUtil {
|
73
74
|
static isEmpty(obj: any): boolean;
|
@@ -323,4 +324,4 @@ declare class HashCacheAsync<K, V> {
|
|
323
324
|
getStats(): HashCacheStats;
|
324
325
|
}
|
325
326
|
|
326
|
-
export { type AccessTokenPayload, ArrayUtil, AsyncUtil, ByteUtil, CacheAsync, CancellablePromise, DateUtil, EventManager, type Func, type FuncHandlers, type FuncHandlersCache, HashCacheAsync, type HashCacheStats, type IdTokenPayload, type JavaHeapStats, type JwKeyPayload, type JwksPayload, Lazy, LazyAsync, NumberUtil, OAuthRestClient, OAuthSessionManager, OAuthSubject, ObjectUtil, type Page, type PagingRequest, PagingUtil, type QueueStats, type RefreshAccessTokenPayload, type RequestAccessTokenPayload, type RequestIdTokenFromLoginPayload, type RequestIdTokenFromSessionPayload, RestClient, type RestClientHeaders, type SessionPayload, type SortingField, type SortingRequest, StringUtil, type TokenRequestPayloadBase, type TokenResponsePayloadBase, type UserAlert, UserAlertType, UserAlerts, Vector2 };
|
327
|
+
export { type AccessTokenPayload, ArrayUtil, AsyncUtil, ByteUtil, CacheAsync, type CacheStats, CancellablePromise, DateUtil, EventManager, type Func, type FuncHandlers, type FuncHandlersCache, HashCacheAsync, type HashCacheStats, type IdTokenPayload, type JavaHeapStats, type JwKeyPayload, type JwksPayload, Lazy, LazyAsync, NumberUtil, OAuthRestClient, OAuthSessionManager, OAuthSubject, ObjectUtil, type Page, type PagingRequest, PagingUtil, type QueueStats, type RefreshAccessTokenPayload, type RequestAccessTokenPayload, type RequestIdTokenFromLoginPayload, type RequestIdTokenFromSessionPayload, RestClient, type RestClientHeaders, type SessionPayload, type SortingField, type SortingRequest, StringUtil, type TokenRequestPayloadBase, type TokenResponsePayloadBase, type UserAlert, UserAlertType, UserAlerts, Vector2 };
|
package/dist/type/Stats.d.ts
CHANGED
package/package.json
CHANGED
package/src/type/Stats.ts
CHANGED