@dxos/app-framework - v0.8.2
    Preparing search index...

    Type Alias IntentChain<FirstTag, LastTag, FirstFields, LastFields>

    Chain of intents to be executed together. The result of each intent is merged into the next intent's input data.

    type IntentChain<
        FirstTag extends string,
        LastTag extends string,
        FirstFields extends IntentParams,
        LastFields extends IntentParams,
    > = {
        all: AnyIntent[];
        first: Intent<FirstTag, FirstFields>;
        last: Intent<LastTag, LastFields>;
    }

    Type Parameters

    Index

    Properties

    Properties

    all: AnyIntent[]