trailing-comma.ts 243 B

123456789101112131415
  1. export interface ShopQueryResult {
  2. chic: boolean;
  3. location: number[];
  4. menus: Menu[];
  5. openingDays: number[];
  6. closingDays: [
  7. {
  8. from: string,
  9. to: string,
  10. }, // <== this one
  11. ];
  12. shop: string;
  13. distance: number;
  14. }