umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
26 lines (25 loc) • 1.14 kB
TypeScript
/**
* 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 CompositionTypeModel: {
readonly Composition: "Composition";
readonly Inheritance: "Inheritance";
};
export type CompositionTypeModel = typeof CompositionTypeModel[keyof typeof CompositionTypeModel];
export declare function instanceOfCompositionTypeModel(value: any): boolean;
export declare function CompositionTypeModelFromJSON(json: any): CompositionTypeModel;
export declare function CompositionTypeModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): CompositionTypeModel;
export declare function CompositionTypeModelToJSON(value?: CompositionTypeModel | null): any;
export declare function CompositionTypeModelToJSONTyped(value: any, ignoreDiscriminator: boolean): CompositionTypeModel;