1export interface PublicOption { 2 userId: string 3 4 optionName: string 5 6 optionValue: string 7 8 public: boolean 9 10 createdAt: string 11 12 updatedAt: string 13}