@next2d/cache 2.5.1 → 2.6.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@next2d/cache",
3
- "version": "2.5.1",
3
+ "version": "2.6.0",
4
4
  "description": "Next2D Cache Package",
5
5
  "author": "Toshiyuki Ienaga<ienaga@next2d.app> (https://github.com/ienaga/)",
6
6
  "license": "MIT",
@@ -34,10 +34,10 @@ export declare class CacheStore {
34
34
  * @description キャッシュ削除用のタイマーID
35
35
  * Timer ID for cache deletion
36
36
  *
37
- * @type {NodeJS.Timeout | null}
37
+ * @type {number | null}
38
38
  * @public
39
39
  */
40
- $timerId: NodeJS.Timeout | null;
40
+ $timerId: number | null;
41
41
  /**
42
42
  * @description キャッシュタイマーの削除フラグ
43
43
  * Deletion flag of cache timer
package/src/CacheStore.js CHANGED
@@ -64,7 +64,7 @@ export class CacheStore {
64
64
  * @description キャッシュ削除用のタイマーID
65
65
  * Timer ID for cache deletion
66
66
  *
67
- * @type {NodeJS.Timeout | null}
67
+ * @type {number | null}
68
68
  * @public
69
69
  */
70
70
  Object.defineProperty(this, "$timerId", {