@slack/types
Version:
Shared type definitions for the Node Slack SDK
23 lines • 513 B
TypeScript
interface ReactionMessageItem {
type: 'message';
channel: string;
ts: string;
}
export interface ReactionAddedEvent {
type: 'reaction_added';
user: string;
reaction: string;
item_user: string;
item: ReactionMessageItem;
event_ts: string;
}
export interface ReactionRemovedEvent {
type: 'reaction_removed';
user: string;
reaction: string;
item_user: string;
item: ReactionMessageItem;
event_ts: string;
}
export {};
//# sourceMappingURL=reaction.d.ts.map