UNPKG

umbraco-management-api-client

Version:

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

30 lines (29 loc) 1.16 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 LogLevelModel: { readonly Verbose: "Verbose"; readonly Debug: "Debug"; readonly Information: "Information"; readonly Warning: "Warning"; readonly Error: "Error"; readonly Fatal: "Fatal"; }; export type LogLevelModel = typeof LogLevelModel[keyof typeof LogLevelModel]; export declare function instanceOfLogLevelModel(value: any): boolean; export declare function LogLevelModelFromJSON(json: any): LogLevelModel; export declare function LogLevelModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): LogLevelModel; export declare function LogLevelModelToJSON(value?: LogLevelModel | null): any; export declare function LogLevelModelToJSONTyped(value: any, ignoreDiscriminator: boolean): LogLevelModel;