@barbonds/waitless-public-data
v1.1.3
Published
public data for waitless
Downloads
18
Readme
Waitless Public Data
This Package holds the public data that can be used to exchange between Waitless components. Depending on your preference, it exports both types as well as an array with values.
Contents
| collection | array | type | | ------------- | ------------ | ------------ | | Allergens | allergens | Allergens | | Product Icons | productIcons | ProductIcons | | Product Types | productTypes | ProductTypes | | Place Types | placeTypes | PlaceTypes |
Example
example array
import { allergens } from @barbonds/waitless-public-data
allergens.forEach((x) => console.log(x));
example type
import { Allergens } from @barbonds/waitless-public-data
const allergens:Allergens = [
'gluten'
]