UNPKG

umbraco-management-api-client

Version:

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

28 lines (27 loc) 1.17 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 ModelsModeModel: { readonly Nothing: "Nothing"; readonly InMemoryAuto: "InMemoryAuto"; readonly SourceCodeManual: "SourceCodeManual"; readonly SourceCodeAuto: "SourceCodeAuto"; }; export type ModelsModeModel = typeof ModelsModeModel[keyof typeof ModelsModeModel]; export declare function instanceOfModelsModeModel(value: any): boolean; export declare function ModelsModeModelFromJSON(json: any): ModelsModeModel; export declare function ModelsModeModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): ModelsModeModel; export declare function ModelsModeModelToJSON(value?: ModelsModeModel | null): any; export declare function ModelsModeModelToJSONTyped(value: any, ignoreDiscriminator: boolean): ModelsModeModel;