From 84006258a3aa4145ed711cfc9b4fc835743753b2 Mon Sep 17 00:00:00 2001 From: jiangwensai Date: Mon, 14 Feb 2022 16:18:35 +0800 Subject: [PATCH] IssueNo: #I4TLWZ Description: fix interface. Sig: SIG_ApplicationFramework Feature or Bugfix: Bugfix Binary Source: No Signed-off-by: jiangwensai --- api/@ohos.application.appManager.d.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/api/@ohos.application.appManager.d.ts b/api/@ohos.application.appManager.d.ts index 51669d2cb4..c61e97d1a3 100644 --- a/api/@ohos.application.appManager.d.ts +++ b/api/@ohos.application.appManager.d.ts @@ -36,6 +36,7 @@ declare namespace appManager { * @since 8 * @SysCap appexecfwk * @param observer The application state observer. + * @systemapi hide this for inner system use * @return Returns the number code of the observer. */ function registerApplicationStateObserver(observer: ApplicationStateObserver): number; @@ -47,6 +48,7 @@ declare namespace appManager { * @since 8 * @SysCap appexecfwk * @param observerId Indicates the number code of the observer. + * @systemapi hide this for inner system use * @return - */ function unregisterApplicationStateObserver(observerId: number, callback: AsyncCallback): void; @@ -58,6 +60,7 @@ declare namespace appManager { * @devices phone, tablet, tv, wearable, car * @since 8 * @SysCap appexecfwk + * @systemapi hide this for inner system use * @return Returns the list of AppStateData. */ function getForegroundApplications(callback: AsyncCallback>): void; -- Gitee