UNPKG

gwitter

Version:

Turn GitHub Issues into your personal microblog platform

12 lines (11 loc) 309 B
interface CommentListProps { issueNumber: number; issueId: string; isVisible: boolean; commentCount: number; onCommentCountChange?: (count: number) => void; repoOwner?: string; repoName?: string; } declare const CommentList: React.FC<CommentListProps>; export default CommentList;