AboutSupportDeveloper GuideVersion 2.0.0
IntentActionMap: [string, ContextActionMap | undefined][]

Action map associating intents with their corresponding context types and actions.

Example

import { BloombergConnectionConfig } from '@openfin/bloomberg';
import * as fdc3 from '@finos/fdc3';

const options: BloombergConnectionConfig = {
actions: {
intents: [
[
fdc3.Intents.ViewInstrument,
[
[
fdc3.ContextTypes.Instrument,
(context) => ({ mnemonic: 'DES', securities: [(context as fdc3.Instrument).id.BBG], target: 0 })
]
],
],
],
},
};

Generated using TypeDoc