UNPKG

sticky-horse

Version:

With StickyHorse allow your users to send feedback to your team.

15 lines (14 loc) 271 B
export interface Comment { id: string; fromUserId: string; comment: string; position: { x: number; y: number; }; replies?: Comment[]; parentId?: string; timestamp: string; targetUserId: string; isAdmin?: boolean; }