Marmot-TS
    Preparing search index...

    Type Alias SendIntent

    SendIntent:
        | { kind: "applicationMessage"; payload: Uint8Array }
        | { kind: "proposal"; proposal: Proposal }
        | {
            actorPubkey: string;
            extraProposals?: (
                | Proposal
                | ProposalAction<Proposal>
                | (Proposal | ProposalAction<Proposal>)[]
            )[];
            kind: "commit";
            proposalRefs?: string[];
        }
        | { kind: "selfUpdate" }

    Application intent when calling MarmotGroupEngine.send.