/** * The minimal properties that a feedback should contain. */ export declare type Feedback = { /** * The title of the feedback message */ title: string; /** * The written body of the feedback message */ content: string; /** * The reason for sending the feedback */ reason: Feedback.reason; }; export declare namespace Feedback { /** * The reason for sending the feedback */ enum reason { GENERAL = "general", REGISTRATION = "registration", RESET_PASSWORD = "reset password", UPDATE_INFO = "update info", IMPROVEMENT = "improvement" } }