umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
26 lines (25 loc) • 1.06 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 DirectionModel: {
readonly Ascending: "Ascending";
readonly Descending: "Descending";
};
export type DirectionModel = typeof DirectionModel[keyof typeof DirectionModel];
export declare function instanceOfDirectionModel(value: any): boolean;
export declare function DirectionModelFromJSON(json: any): DirectionModel;
export declare function DirectionModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): DirectionModel;
export declare function DirectionModelToJSON(value?: DirectionModel | null): any;
export declare function DirectionModelToJSONTyped(value: any, ignoreDiscriminator: boolean): DirectionModel;