Interface ReactionAction

interface ReactionAction {
    data: {
        effect: boolean;
        reactions: Reaction[];
    };
    type: "reactions";
}

Hierarchy (view full)

Properties

Properties

data: {
    effect: boolean;
    reactions: Reaction[];
}

Type declaration

type: "reactions"