/** * Common functionalities for the entity-feedback plugin. * * @packageDocumentation */ /** * @public */ export interface Rating { entityRef: string; rating: string; userRef: string; } /** * @public */ export interface FeedbackResponse { entityRef: string; response?: string; comments?: string; consent?: boolean; userRef: string; } /** * @public */ export interface Ratings { [ratingValue: string]: number; } /** * @public */ export interface EntityRatingsData { entityRef: string; entityTitle?: string; ratings: Ratings; }