From 055a27fa1b3de1619ee7d24cf79e19f3a47af22d Mon Sep 17 00:00:00 2001 From: zhiqizhou Date: Fri, 8 Aug 2025 11:12:52 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=E5=A4=9A=E4=BD=99=E5=AE=9A?= =?UTF-8?q?=E4=B9=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: zhiqizhou --- api/arkui/stateManagement/decorator.d.ets | 8 -------- api/arkui/stateManagement/storage/appStorage.d.ets | 2 +- 2 files changed, 1 insertion(+), 9 deletions(-) diff --git a/api/arkui/stateManagement/decorator.d.ets b/api/arkui/stateManagement/decorator.d.ets index c6cc8bc552..35c42a8f9b 100644 --- a/api/arkui/stateManagement/decorator.d.ets +++ b/api/arkui/stateManagement/decorator.d.ets @@ -1244,14 +1244,6 @@ export declare interface ISubscribedWatches extends IWatchSubscriberRegister { executeOnSubscribingWatches(propertyName: string): void; } -export declare interface AbstractProperty extends IDecoratedMutableVariable { - info(): string; -} - -export declare interface SubscribedAbstractProperty extends AbstractProperty { - aboutToBeDeleted(): void; -} - /** * Defines Computed decoration variable interface. * diff --git a/api/arkui/stateManagement/storage/appStorage.d.ets b/api/arkui/stateManagement/storage/appStorage.d.ets index 4a3bf1b8ff..5d4694d004 100644 --- a/api/arkui/stateManagement/storage/appStorage.d.ets +++ b/api/arkui/stateManagement/storage/appStorage.d.ets @@ -20,4 +20,4 @@ import { LocalStorage } from './localStorage'; -export const AppStorage: LocalStorage = new LocalStorage(); +export const AppStorage: LocalStorage = new LocalStorage(); \ No newline at end of file -- Gitee