aboutsummaryrefslogtreecommitdiff
path: root/src/definitions/food.ts
blob: 99cee8e349ca5619b32329d4132f65dd6382d9c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import type { LocaleEntry } from './definitions';

export type FoodDefinition = LocaleEntry<{
  /**
   * Common food adjectives.
   */
  adjective: string[];

  /**
   * List of description patterns.
   */
  description_pattern: string[];

  /**
   * Common dish names.
   */
  dish: string[];

  /**
   * List of dish patterns.
   */
  dish_pattern: string[];

  /**
   * A list of cooking styles that are commonly associated with a particular food item or recipe.
   */
  ethnic_category: string[];

  /**
   * A list of common fruit names.
   */
  fruit: string[];

  /**
   * Common ingredient names.
   */
  ingredient: string[];

  /**
   * Common meat names.
   */
  meat: string[];

  /**
   * A list of common spice names.
   */
  spice: string[];

  /**
   * A list of common vegetable names.
   */
  vegetable: string[];
}>;