mirror of
https://gitlab.com/wheres-the-tp/ui-mobile.git
synced 2026-01-25 10:04:56 -06:00
11 lines
462 B
JavaScript
11 lines
462 B
JavaScript
// @flow
|
|
export const CATEGORY_BEVERAGES: 'beverages' = 'beverages';
|
|
export const CATEGORY_DESSERTS: 'desserts' = 'desserts';
|
|
export const CATEGORY_ENTREES: 'entrees' = 'entrees';
|
|
export const CATEGORY_OTHER: 'other' = 'other';
|
|
export type Category =
|
|
| typeof CATEGORY_BEVERAGES
|
|
| typeof CATEGORY_DESSERTS
|
|
| typeof CATEGORY_ENTREES
|
|
| typeof CATEGORY_OTHER;
|
|
export const CATEGORIES = [CATEGORY_BEVERAGES, CATEGORY_DESSERTS, CATEGORY_ENTREES, CATEGORY_OTHER];
|