@slack/types
Version:
Shared type definitions for the Node Slack SDK
16 lines • 357 B
TypeScript
export interface LinkSharedEvent {
type: 'link_shared';
channel: string;
is_bot_user_member: boolean;
user: string;
message_ts: string;
thread_ts?: string;
links: {
domain: string;
url: string;
}[];
unfurl_id?: string;
source?: string;
event_ts: string;
}
//# sourceMappingURL=link-shared.d.ts.map