From 1eb4a0ed3b646f4a27f7651c880dc28416c553ae Mon Sep 17 00:00:00 2001 From: wangtiantian Date: Mon, 27 Jun 2022 09:42:53 +0800 Subject: [PATCH] IssueNo: #I5E6WS:add extension type Description:add extension type Sig:SIG_ApplicaitonFramework Feature or Bugfix:Feature Binary Source:No Signed-off-by: wangtiantian --- api/@ohos.bundle.d.ts | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/api/@ohos.bundle.d.ts b/api/@ohos.bundle.d.ts index 99b9e78ad5..3193e5d1bc 100644 --- a/api/@ohos.bundle.d.ts +++ b/api/@ohos.bundle.d.ts @@ -309,12 +309,24 @@ declare namespace bundle { * @syscap SystemCapability.BundleManager.BundleFramework */ ENTERPRISE_ADMIN = 11, + /** + * @default Indicates extension info with type of thumbnail + * @since 9 + * @syscap SystemCapability.BundleManager.BundleFramework + */ + THUMBNAIL = 13, + /** + * @default Indicates extension info with type of preview + * @since 9 + * @syscap SystemCapability.BundleManager.BundleFramework + */ + PREVIEW = 14, /** * @default Indicates extension info with type of unspecified * @since 9 * @syscap SystemCapability.BundleManager.BundleFramework */ - UNSPECIFIED = 20, + UNSPECIFIED = 255, } /** -- Gitee