@next2d/cache 2.5.2 → 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 +1 -1
- package/src/CacheStore.d.ts +2 -2
- package/src/CacheStore.js +1 -1
package/package.json
CHANGED
package/src/CacheStore.d.ts
CHANGED
|
@@ -34,10 +34,10 @@ export declare class CacheStore {
|
|
|
34
34
|
* @description キャッシュ削除用のタイマーID
|
|
35
35
|
* Timer ID for cache deletion
|
|
36
36
|
*
|
|
37
|
-
* @type {
|
|
37
|
+
* @type {number | null}
|
|
38
38
|
* @public
|
|
39
39
|
*/
|
|
40
|
-
$timerId:
|
|
40
|
+
$timerId: number | null;
|
|
41
41
|
/**
|
|
42
42
|
* @description キャッシュタイマーの削除フラグ
|
|
43
43
|
* Deletion flag of cache timer
|