1
0
mirror of https://github.com/TandoorRecipes/recipes.git synced 2026-01-11 09:07:12 -05:00
This commit is contained in:
vabene1111
2024-03-05 17:16:07 +01:00
parent aa5a87a1fc
commit c0c71c3967
138 changed files with 4367 additions and 3934 deletions

View File

@@ -1,8 +1,8 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
* Tandoor
* Tandoor API Docs
*
* The version of the OpenAPI document: 0.0.0
*
@@ -12,48 +12,46 @@
* 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 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 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 function BaseUnitEnumFromJSON(json: any): BaseUnitEnum {
return BaseUnitEnumFromJSONTyped(json, false);