Lines Matching refs:insightIntent
36 | executeMode | [insightIntent.ExecuteMode](js-apis-app-ability-insightIntent.md#executemode) | 是 |…
41 execute(param: ExecuteParam, callback: AsyncCallback<insightIntent.ExecuteResult>): void
45 当意图调用执行模式[ExecuteMode](js-apis-app-ability-insightIntent.md#executemode)取值为UI_ABILITY_BACKGROUND时,需…
60 …| callback | AsyncCallback<[insightIntent.ExecuteResult](js-apis-app-ability-insightIntent.md#exec…
89 import { insightIntentDriver, insightIntent } from '@kit.AbilityKit';
101 executeMode: insightIntent.ExecuteMode.UI_ABILITY_FOREGROUND,
105 insightIntentDriver.execute(param, (error, data: insightIntent.ExecuteResult) => {
122 execute(param: ExecuteParam): Promise<insightIntent.ExecuteResult>
126 当意图调用执行模式[ExecuteMode](js-apis-app-ability-insightIntent.md#executemode)取值为UI_ABILITY_BACKGROUND时,需…
146 | Promise<[insightIntent.ExecuteResult](js-apis-app-ability-insightIntent.md#executeresult)> | Prom…
175 import { insightIntentDriver, insightIntent } from '@kit.AbilityKit';
187 executeMode: insightIntent.ExecuteMode.UI_ABILITY_FOREGROUND,
191 let resultData: insightIntent.ExecuteResult = await insightIntentDriver.execute(param);