From f56d5413faf9b12f3b9b5e8004b350c600c39356 Mon Sep 17 00:00:00 2001 From: dy_study Date: Sat, 28 May 2022 09:23:36 +0800 Subject: [PATCH] =?UTF-8?q?fixed=20fbcc4e1=20from=20https://gitee.com/dy?= =?UTF-8?q?=5Fstudy/interface=5Fsdk-js/pulls/1827=20IssueNo:#I59GSR=20Desc?= =?UTF-8?q?ription:ProcessRunningInfo=E6=8E=A5=E5=8F=A3syscap=E5=AE=9A?= =?UTF-8?q?=E4=B9=89=E5=8F=98=E6=9B=B4=20Sig:SIG=5FApplicationFramework=20?= =?UTF-8?q?Feature=20or=20Bugfix:Bugfix=20Binary=20Source:=20No?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: dy_study Change-Id: I297d688cdb122d642e80b5daf984be9ed8d19238 --- api/application/ProcessRunningInfo.d.ts | 32 +++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/api/application/ProcessRunningInfo.d.ts b/api/application/ProcessRunningInfo.d.ts index ff53765b0f..2d489c1b14 100644 --- a/api/application/ProcessRunningInfo.d.ts +++ b/api/application/ProcessRunningInfo.d.ts @@ -16,35 +16,67 @@ /** * The class of an process running information. * + * @deprecated since 9 * @since 8 + * @syscap SystemCapability.Ability.AbilityRuntime.Mission + * @permission N/A + */ +/** + * The class of an process running information. + * + * @since 9 * @syscap SystemCapability.Ability.AbilityRuntime.Core * @permission N/A */ export interface ProcessRunningInfo { /** * @default process id + * @deprecated since 9 * @since 8 + * @syscap SystemCapability.Ability.AbilityRuntime.Mission + */ + /** + * @default process id + * @since 9 * @syscap SystemCapability.Ability.AbilityRuntime.Core */ pid: number; /** * @default user id + * @deprecated since 9 * @since 8 + * @syscap SystemCapability.Ability.AbilityRuntime.Mission + */ + /** + * @default user id + * @since 9 * @syscap SystemCapability.Ability.AbilityRuntime.Core */ uid: number; /** * @default the name of the process + * @deprecated since 9 * @since 8 + * @syscap SystemCapability.Ability.AbilityRuntime.Mission + */ + /** + * @default the name of the process + * @since 9 * @syscap SystemCapability.Ability.AbilityRuntime.Core */ processName: string; /** * @default an array of the bundleNames running in the process + * @deprecated since 9 * @since 8 + * @syscap SystemCapability.Ability.AbilityRuntime.Mission + */ + /** + * @default an array of the bundleNames running in the process + * @since 9 * @syscap SystemCapability.Ability.AbilityRuntime.Core */ bundleNames: Array; -- Gitee