mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-03 05:11:31 -05:00
working on model select
This commit is contained in:
@@ -12,20 +12,22 @@
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* * `SEARCH` - Search
|
||||
* `PLAN` - Meal-Plan
|
||||
* `BOOKS` - Books
|
||||
* `SHOPPING` - Shopping
|
||||
* * `PLAN` - Meal-Plan
|
||||
* * `BOOKS` - Books
|
||||
* * `SHOPPING` - Shopping
|
||||
* @export
|
||||
* @enum {string}
|
||||
*/
|
||||
export enum DefaultPageEnum {
|
||||
Search = 'SEARCH',
|
||||
Plan = 'PLAN',
|
||||
Books = 'BOOKS',
|
||||
Shopping = 'SHOPPING'
|
||||
}
|
||||
export const DefaultPageEnum = {
|
||||
Search: 'SEARCH',
|
||||
Plan: 'PLAN',
|
||||
Books: 'BOOKS',
|
||||
Shopping: 'SHOPPING'
|
||||
} as const;
|
||||
export type DefaultPageEnum = typeof DefaultPageEnum[keyof typeof DefaultPageEnum];
|
||||
|
||||
|
||||
export function DefaultPageEnumFromJSON(json: any): DefaultPageEnum {
|
||||
return DefaultPageEnumFromJSONTyped(json, false);
|
||||
|
||||
Reference in New Issue
Block a user