Signed-off-by: wangkailong <wangkailong6@huawei.com>
Change-Id: If9b48da4b686f5c3156f00ea75dfd6f8aaa1facd
This commit is contained in:
wangkailong 2023-04-28 18:01:42 +08:00
parent 089da0e9c8
commit 58f8ad44ed
3 changed files with 7 additions and 0 deletions

View File

@ -31,6 +31,7 @@ export default class AbilityStage {
* @type { AbilityStageContext }
* @syscap SystemCapability.Ability.AbilityRuntime.Core
* @StageModelOnly
* @crossplatform
* @since 9
*/
context: AbilityStageContext;

View File

@ -189,6 +189,7 @@ export default class UIAbility extends Ability {
* @type { UIAbilityContext }
* @syscap SystemCapability.Ability.AbilityRuntime.AbilityCore
* @StageModelOnly
* @crossplatform
* @since 9
*/
context: UIAbilityContext;

View File

@ -16,12 +16,14 @@
/**
* Want is the basic communication component of the system.
* @syscap SystemCapability.Ability.AbilityBase
* @crossplatform
* @since 9
*/
export default class Want {
/**
* bundle name
* @syscap SystemCapability.Ability.AbilityBase
* @crossplatform
* @since 9
*/
bundleName?: string;
@ -29,6 +31,7 @@ export default class Want {
/**
* ability name
* @syscap SystemCapability.Ability.AbilityBase
* @crossplatform
* @since 9
*/
abilityName?: string;
@ -71,6 +74,7 @@ export default class Want {
/**
* The description of the WantParams object in an Want
* @syscap SystemCapability.Ability.AbilityBase
* @crossplatform
* @since 9
*/
parameters?: {[key: string]: Object};
@ -85,6 +89,7 @@ export default class Want {
/**
* The description of an module name in an want.
* @syscap SystemCapability.Ability.AbilityBase
* @crossplatform
* @since 9
*/
moduleName?: string;