UNPKG

umbraco-management-api-client

Version:

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

28 lines (27 loc) 976 B
/** * 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. */ import * as runtime from '../runtime'; export interface GetPropertyTypeIsUsedRequest { contentTypeId?: string; propertyAlias?: string; } /** * */ export declare class PropertyTypeApi extends runtime.BaseAPI { /** */ getPropertyTypeIsUsedRaw(requestParameters: GetPropertyTypeIsUsedRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<boolean>>; /** */ getPropertyTypeIsUsed(requestParameters?: GetPropertyTypeIsUsedRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<boolean>; }