mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-02 12:49:02 -05:00
servings
This commit is contained in:
@@ -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,20 +12,18 @@
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* * `SEARCH` - Search
|
||||
* * `PLAN` - Meal-Plan
|
||||
* * `BOOKS` - Books
|
||||
* `PLAN` - Meal-Plan
|
||||
* `BOOKS` - Books
|
||||
* @export
|
||||
* @enum {string}
|
||||
*/
|
||||
export const DefaultPageEnum = {
|
||||
Search: 'SEARCH',
|
||||
Plan: 'PLAN',
|
||||
Books: 'BOOKS'
|
||||
} as const;
|
||||
export type DefaultPageEnum = typeof DefaultPageEnum[keyof typeof DefaultPageEnum];
|
||||
|
||||
export enum DefaultPageEnum {
|
||||
Search = 'SEARCH',
|
||||
Plan = 'PLAN',
|
||||
Books = 'BOOKS'
|
||||
}
|
||||
|
||||
export function DefaultPageEnumFromJSON(json: any): DefaultPageEnum {
|
||||
return DefaultPageEnumFromJSONTyped(json, false);
|
||||
|
||||
Reference in New Issue
Block a user