Files
recipes/vue3/src/openapi/models/ThemeEnum.ts
2024-03-27 08:37:00 -05:00

48 lines
1.1 KiB
TypeScript

/* tslint:disable */
/* eslint-disable */
/**
* Tandoor
* Tandoor API Docs
*
* The version of the OpenAPI document: 0.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
* * `TANDOOR` - Tandoor
* * `BOOTSTRAP` - Bootstrap
* * `DARKLY` - Darkly
* * `FLATLY` - Flatly
* * `SUPERHERO` - Superhero
* * `TANDOOR_DARK` - Tandoor Dark (INCOMPLETE)
* @export
*/
export const ThemeEnum = {
Tandoor: 'TANDOOR',
Bootstrap: 'BOOTSTRAP',
Darkly: 'DARKLY',
Flatly: 'FLATLY',
Superhero: 'SUPERHERO',
TandoorDark: 'TANDOOR_DARK'
} as const;
export type ThemeEnum = typeof ThemeEnum[keyof typeof ThemeEnum];
export function ThemeEnumFromJSON(json: any): ThemeEnum {
return ThemeEnumFromJSONTyped(json, false);
}
export function ThemeEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): ThemeEnum {
return json as ThemeEnum;
}
export function ThemeEnumToJSON(value?: ThemeEnum | null): any {
return value as any;
}