modify worker sdk

worker.d.ts Delete default Object type in worker sdk,
export DedicatedWorkerGlobalScope,EventTarget,MessageEvent and ErrorEvent

issue:https://gitee.com/openharmony/interface_sdk-js/issues/I4XDNK

Signed-off-by: y00576111 <yaojian16@huawei.com>
Change-Id: I623879ffac63be5d1375879381a206617eb9a142
This commit is contained in:
y00576111 2022-03-11 13:06:39 +08:00
parent 07ceb08fc0
commit 1436fd9669

View File

@ -67,7 +67,7 @@ export interface Event {
* @since 7
* @syscap SystemCapability.Utils.Lang
*/
interface ErrorEvent extends Event {
export interface ErrorEvent extends Event {
/**
* Information about the exception.
* @since 7
@ -109,7 +109,7 @@ interface ErrorEvent extends Event {
* @since 7
* @syscap SystemCapability.Utils.Lang
*/
declare interface MessageEvent<T = Object> extends Event {
export interface MessageEvent<T> extends Event {
/**
* Data transferred when an exception occurs.
* @since 7
@ -160,7 +160,7 @@ type MessageType = "message" | "messageerror";
* @since 7
* @syscap SystemCapability.Utils.Lang
*/
declare interface EventTarget {
export interface EventTarget {
/**
* Adds an event listener to the worker.
* @param type Type of the event to listen for.
@ -231,7 +231,7 @@ declare interface WorkerGlobalScope extends EventTarget {
* @since 7
* @syscap SystemCapability.Utils.Lang
*/
declare interface DedicatedWorkerGlobalScope extends WorkerGlobalScope {
export interface DedicatedWorkerGlobalScope extends WorkerGlobalScope {
/**
* The onmessage attribute of parentPort specifies the event handler
* to be called then the worker thread receives a message sent by