From a6222f7d07b869acc129c09f4e03c5254bc71211 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E6=B5=B7=E8=8E=B9?= Date: Sat, 26 Mar 2022 09:01:05 +0000 Subject: [PATCH] =?UTF-8?q?update=20api/@ohos.window.d.ts.=E3=80=82?= =?UTF-8?q?=E5=8E=BB=E9=99=A4create=E6=8E=A5=E5=8F=A3=E7=9A=84=E6=9D=83?= =?UTF-8?q?=E9=99=90=E6=8F=8F=E8=BF=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/@ohos.window.d.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/api/@ohos.window.d.ts b/api/@ohos.window.d.ts index ddb0f5c6a2..fc44ff8043 100644 --- a/api/@ohos.window.d.ts +++ b/api/@ohos.window.d.ts @@ -315,7 +315,6 @@ declare namespace window { * Create a sub window with a specific id and type, only support 7. * @param id Indicates window id. * @param type Indicates window type. - * @permission ohos.permission.SYSTEM_FLOAT_WINDOW * @since 7 */ function create(id: string, type: WindowType, callback: AsyncCallback): void; @@ -324,7 +323,6 @@ declare namespace window { * Create a sub window with a specific id and type, only support 7. * @param id Indicates window id. * @param type Indicates window type. - * @permission ohos.permission.SYSTEM_FLOAT_WINDOW * @since 7 */ function create(id: string, type: WindowType): Promise; @@ -334,7 +332,6 @@ declare namespace window { * @param ctx Indicates the context on which the window depends * @param id Indicates window id. * @param type Indicates window type. - * @permission ohos.permission.SYSTEM_FLOAT_WINDOW * @since 8 */ function create(ctx: Context, id: string, type: WindowType): Promise; @@ -344,7 +341,6 @@ declare namespace window { * @param ctx Indicates the context on which the window depends * @param id Indicates window id. * @param type Indicates window type. - * @permission ohos.permission.SYSTEM_FLOAT_WINDOW * @since 8 */ function create(ctx: Context, id: string, type: WindowType, callback: AsyncCallback): void; -- Gitee