mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-02 04:39:54 -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.
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* * `DB` - Dropbox
|
||||
* * `NEXTCLOUD` - Nextcloud
|
||||
* * `LOCAL` - Local
|
||||
* `NEXTCLOUD` - Nextcloud
|
||||
* `LOCAL` - Local
|
||||
* @export
|
||||
* @enum {string}
|
||||
*/
|
||||
export const MethodEnum = {
|
||||
Db: 'DB',
|
||||
Nextcloud: 'NEXTCLOUD',
|
||||
Local: 'LOCAL'
|
||||
} as const;
|
||||
export type MethodEnum = typeof MethodEnum[keyof typeof MethodEnum];
|
||||
|
||||
export enum MethodEnum {
|
||||
Db = 'DB',
|
||||
Nextcloud = 'NEXTCLOUD',
|
||||
Local = 'LOCAL'
|
||||
}
|
||||
|
||||
export function MethodEnumFromJSON(json: any): MethodEnum {
|
||||
return MethodEnumFromJSONTyped(json, false);
|
||||
|
||||
Reference in New Issue
Block a user