umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
30 lines (29 loc) • 1.2 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 ImageCropModeModel: {
readonly Crop: "Crop";
readonly Max: "Max";
readonly Stretch: "Stretch";
readonly Pad: "Pad";
readonly BoxPad: "BoxPad";
readonly Min: "Min";
};
export type ImageCropModeModel = typeof ImageCropModeModel[keyof typeof ImageCropModeModel];
export declare function instanceOfImageCropModeModel(value: any): boolean;
export declare function ImageCropModeModelFromJSON(json: any): ImageCropModeModel;
export declare function ImageCropModeModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): ImageCropModeModel;
export declare function ImageCropModeModelToJSON(value?: ImageCropModeModel | null): any;
export declare function ImageCropModeModelToJSONTyped(value: any, ignoreDiscriminator: boolean): ImageCropModeModel;