diff --git a/api/@system.app.d.ts b/api/@system.app.d.ts index affbe03dbcabb9d0d860815b3dff6839e9219e6c..d038224a5839b542182b4092f8231412eb682e4a 100644 --- a/api/@system.app.d.ts +++ b/api/@system.app.d.ts @@ -131,6 +131,7 @@ export default class App { * if not set, the application will not cache any decoded image. * @syscap SystemCapability.ArkUI.ArkUI.Full * @param value capacity of decoded image count. + * @since 7 */ static setImageCacheCount(value: number): void; @@ -139,6 +140,7 @@ export default class App { * if not set, the application will not cache any raw image data. * @syscap SystemCapability.ArkUI.ArkUI.Full * @param value capacity of raw image data size in bytes. + * @since 7 */ static setImageRawDataCacheSize(value: number): void; @@ -147,6 +149,7 @@ export default class App { * if not set, the application will cache 100MB image files on disk. * @syscap SystemCapability.ArkUI.ArkUI.Full * @param value capacity of raw image data size in bytes. + * @since 7 */ static setImageFileCacheSize(value: number): void; }