From 17e9e9ae397f8dfade69ccc1cd90f980e4346f86 Mon Sep 17 00:00:00 2001 From: liyujie Date: Tue, 9 Sep 2025 11:48:20 +0800 Subject: [PATCH] fix load -> loaded Signed-off-by: liyujie Change-Id: Ib854910b413a777521a0a931c28eb4005f92c3dc --- api/@ohos.arkui.drawableDescriptor.d.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/api/@ohos.arkui.drawableDescriptor.d.ts b/api/@ohos.arkui.drawableDescriptor.d.ts index 2ff2f812ed..4844b8834b 100644 --- a/api/@ohos.arkui.drawableDescriptor.d.ts +++ b/api/@ohos.arkui.drawableDescriptor.d.ts @@ -115,26 +115,26 @@ export declare class DrawableDescriptor { /** * Synchronously loads the image and returns the loading result. * - * @returns { DrawableDescriptorLoadResult } loading outcome. + * @returns { DrawableDescriptorLoadedResult } loading outcome. * @throws { BusinessError } 111001 - resource loading failed. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since 21 */ - loadSync(): DrawableDescriptorLoadResult; + loadSync(): DrawableDescriptorLoadedResult; /** * Asynchronously loads image and returns loading result. * - * @returns { Promise } The image loading result. + * @returns { Promise } The image loading result. * @throws { BusinessError } 111001 - resource loading failed. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since 21 */ - load(): Promise; + load(): Promise; } /** -- Gitee