UNPKG

gwitter

Version:

Turn GitHub Issues into your personal microblog platform

17 lines (16 loc) 359 B
interface InteractionProps { id: number; issueId: string; reactions: { totalCount: number; userReacted: boolean; heartCount: number; }; comments: { totalCount: number; }; repoOwner?: string; repoName?: string; } declare const Interaction: React.FC<InteractionProps>; export default Interaction;