interface PluginComment { id?: number; plugin_slug?: string; comment_user_id?: number; comment_user_email?: string; comment_date?: string; comment_display_date?: string; comment_user_display_name?: string; comment_user_avatar?: string; comment_content?: string; } interface AddPluginComment { plugin_slug: string; comment_content: string; }