mirror of
https://gitee.com/openharmony/interface_sdk-js
synced 2025-04-03 04:32:05 +00:00
Signed-off-by: zero-cyc <chenlien@huawei.com> Change-Id: I97bfd35ad96d9060c0d638bd247d1a7dffa110de
This commit is contained in:
parent
cc5c531628
commit
815e0cd71e
14
api/@ohos.wantAgent.d.ts
vendored
14
api/@ohos.wantAgent.d.ts
vendored
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2021 Huawei Device Co., Ltd.
|
||||
* Copyright (c) 2021-2022 Huawei Device Co., Ltd.
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
@ -101,6 +101,16 @@ declare namespace wantAgent {
|
||||
function getWantAgent(info: WantAgentInfo, callback: AsyncCallback<WantAgent>): void;
|
||||
function getWantAgent(info: WantAgentInfo): Promise<WantAgent>;
|
||||
|
||||
/**
|
||||
* Obtains the {@link OperationType} of a {@link WantAgent}.
|
||||
*
|
||||
* @since 9
|
||||
* @param agent Indicates the {@link WantAgent} whose {@link OperationType} is to be obtained.
|
||||
* @return Returns the {@link OperationType} of the {@link WantAgent}.
|
||||
*/
|
||||
function getOperationType(agent: WantAgent, callback: AsyncCallback<number>): void;
|
||||
function getOperationType(agent: WantAgent): Promise<number>;
|
||||
|
||||
/**
|
||||
* Enumerates flags for using a WantAgent.
|
||||
*/
|
||||
@ -226,4 +236,4 @@ declare namespace wantAgent {
|
||||
*/
|
||||
export type WantAgent = object;
|
||||
|
||||
export default wantAgent;
|
||||
export default wantAgent;
|
||||
|
19
api/commonEvent/commonEventSubscriber.d.ts
vendored
19
api/commonEvent/commonEventSubscriber.d.ts
vendored
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2021 Huawei Device Co., Ltd.
|
||||
* Copyright (c) 2021-2022 Huawei Device Co., Ltd.
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
@ -218,4 +218,21 @@ export interface CommonEventSubscriber {
|
||||
* @return Returns the commonEvent subscribe information
|
||||
*/
|
||||
getSubscribeInfo(): Promise<CommonEventSubscribeInfo>;
|
||||
|
||||
/**
|
||||
* finish the current ordered common event.
|
||||
*
|
||||
* @since 9
|
||||
* @param callback Indicate the callback function after the ordered common event is finished.
|
||||
* @return -
|
||||
*/
|
||||
finishCommonEvent(callback: AsyncCallback<void>): void;
|
||||
|
||||
/**
|
||||
* finish the current ordered common event.
|
||||
*
|
||||
* @since 9
|
||||
* @return -
|
||||
*/
|
||||
finishCommonEvent(): Promise<void>;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user