UNPKG

@bit-ui-libs/common

Version:
22 lines (19 loc) 366 B
export enum FeedbackEnum { EXCELLENT = 'EXCELLENT', GOOD = 'GOOD', POOR = 'POOR', VERY_POOR = 'VERY POOR', } export interface AddFeedbackRequest { type: FeedbackEnum; comment: string; } export interface Feedback { id: string; userId: string; type: FeedbackEnum; comment: string; createdAt: string; updatedBy: string; updatedAt: string; }