1
0
mirror of https://github.com/TandoorRecipes/recipes.git synced 2026-01-11 09:07:12 -05:00

working on model select

This commit is contained in:
vabene1111
2024-03-11 19:46:37 +01:00
parent 09dc35228f
commit 18767c54ce
140 changed files with 7676 additions and 5949 deletions

View File

@@ -12,46 +12,48 @@
* Do not edit the class manually.
*/
/**
* * `G` - g
* `KG` - kg
* `ML` - ml
* `L` - l
* `OUNCE` - ounce
* `POUND` - pound
* `FLUID_OUNCE` - fluid_ounce
* `TSP` - tsp
* `TBSP` - tbsp
* `CUP` - cup
* `PINT` - pint
* `QUART` - quart
* `GALLON` - gallon
* `IMPERIAL_FLUID_OUNCE` - imperial fluid ounce
* `IMPERIAL_PINT` - imperial pint
* `IMPERIAL_QUART` - imperial quart
* `IMPERIAL_GALLON` - imperial gallon
* * `KG` - kg
* * `ML` - ml
* * `L` - l
* * `OUNCE` - ounce
* * `POUND` - pound
* * `FLUID_OUNCE` - fluid_ounce
* * `TSP` - tsp
* * `TBSP` - tbsp
* * `CUP` - cup
* * `PINT` - pint
* * `QUART` - quart
* * `GALLON` - gallon
* * `IMPERIAL_FLUID_OUNCE` - imperial fluid ounce
* * `IMPERIAL_PINT` - imperial pint
* * `IMPERIAL_QUART` - imperial quart
* * `IMPERIAL_GALLON` - imperial gallon
* @export
* @enum {string}
*/
export enum BaseUnitEnum {
G = 'G',
Kg = 'KG',
Ml = 'ML',
L = 'L',
Ounce = 'OUNCE',
Pound = 'POUND',
FluidOunce = 'FLUID_OUNCE',
Tsp = 'TSP',
Tbsp = 'TBSP',
Cup = 'CUP',
Pint = 'PINT',
Quart = 'QUART',
Gallon = 'GALLON',
ImperialFluidOunce = 'IMPERIAL_FLUID_OUNCE',
ImperialPint = 'IMPERIAL_PINT',
ImperialQuart = 'IMPERIAL_QUART',
ImperialGallon = 'IMPERIAL_GALLON'
}
export const BaseUnitEnum = {
G: 'G',
Kg: 'KG',
Ml: 'ML',
L: 'L',
Ounce: 'OUNCE',
Pound: 'POUND',
FluidOunce: 'FLUID_OUNCE',
Tsp: 'TSP',
Tbsp: 'TBSP',
Cup: 'CUP',
Pint: 'PINT',
Quart: 'QUART',
Gallon: 'GALLON',
ImperialFluidOunce: 'IMPERIAL_FLUID_OUNCE',
ImperialPint: 'IMPERIAL_PINT',
ImperialQuart: 'IMPERIAL_QUART',
ImperialGallon: 'IMPERIAL_GALLON'
} as const;
export type BaseUnitEnum = typeof BaseUnitEnum[keyof typeof BaseUnitEnum];
export function BaseUnitEnumFromJSON(json: any): BaseUnitEnum {
return BaseUnitEnumFromJSONTyped(json, false);