From ee8e9bd56f12ade97856877001a85acca38b9036 Mon Sep 17 00:00:00 2001 From: chenbenzhi Date: Tue, 12 Aug 2025 17:30:58 +0800 Subject: [PATCH] 0702removeundefined Signed-off-by: chenbenzhi --- api/arkui/stateManagement/storage/storageProperty.static.d.ets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/arkui/stateManagement/storage/storageProperty.static.d.ets b/api/arkui/stateManagement/storage/storageProperty.static.d.ets index b029e3e0c9..bbff562c81 100644 --- a/api/arkui/stateManagement/storage/storageProperty.static.d.ets +++ b/api/arkui/stateManagement/storage/storageProperty.static.d.ets @@ -58,7 +58,7 @@ export interface AbstractProperty { * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 20 */ - get(): T { return undefined; }; + get(): T; /** * Assign a new value to the referenced property -- Gitee