Lines Matching refs:insightIntent
36 | executeMode | [insightIntent.ExecuteMode](js-apis-app-ability-insightIntent.md#executemode) | Yes…
41 execute(param: ExecuteParam, callback: AsyncCallback<insightIntent.ExecuteResult>): void
47 When [ExecuteMode](js-apis-app-ability-insightIntent.md#executemode) of the InsightIntent call is s…
62 …| callback | AsyncCallback<[insightIntent.ExecuteResult](js-apis-app-ability-insightIntent.md#exec…
91 import { insightIntentDriver, insightIntent } from '@kit.AbilityKit';
103 executeMode: insightIntent.ExecuteMode.UI_ABILITY_FOREGROUND,
107 insightIntentDriver.execute(param, (error, data: insightIntent.ExecuteResult) => {
124 execute(param: ExecuteParam): Promise<insightIntent.ExecuteResult>
130 When [ExecuteMode](js-apis-app-ability-insightIntent.md#executemode) of the InsightIntent call is s…
150 | Promise<[insightIntent.ExecuteResult](js-apis-app-ability-insightIntent.md#executeresult)> | Prom…
179 import { insightIntentDriver, insightIntent } from '@kit.AbilityKit';
191 executeMode: insightIntent.ExecuteMode.UI_ABILITY_FOREGROUND,
195 let resultData: insightIntent.ExecuteResult = await insightIntentDriver.execute(param);