diff --git a/api/@ohos.arkui.drawableDescriptor.d.ts b/api/@ohos.arkui.drawableDescriptor.d.ts index 2ff2f812edbf002aa59605fd066e4882623d30cd..4844b8834b762e9b4abe48489fdfc8d5d9fbae33 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; } /**