UNPKG

umbraco-management-api-client

Version:

TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)

27 lines (26 loc) 1.15 kB
/** * Umbraco Management API * This shows all APIs available in this version of Umbraco - including all the legacy apis that are available for backward compatibility * * The version of the OpenAPI document: Latest * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export */ export declare const RuntimeModeModel: { readonly BackofficeDevelopment: "BackofficeDevelopment"; readonly Development: "Development"; readonly Production: "Production"; }; export type RuntimeModeModel = typeof RuntimeModeModel[keyof typeof RuntimeModeModel]; export declare function instanceOfRuntimeModeModel(value: any): boolean; export declare function RuntimeModeModelFromJSON(json: any): RuntimeModeModel; export declare function RuntimeModeModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): RuntimeModeModel; export declare function RuntimeModeModelToJSON(value?: RuntimeModeModel | null): any; export declare function RuntimeModeModelToJSONTyped(value: any, ignoreDiscriminator: boolean): RuntimeModeModel;