UNPKG

@eleva-io/erp-sdk

Version:

SDK oficial para el ERP de Eleva

9 lines 725 B
import { HTTPClient } from '../../../../utils/http'; import { CRUD } from '../../../../utils/crud'; import { CommunityProperty, CommunityPropertyPerson, CreateCommunityPropertyDTO, CreateCommunityPropertyPersonDTO, UpdateCommunityPropertyDTO, UpdateCommunityPropertyPersonDTO } from '../types'; export declare class CommunitiesPropertiesAPI extends CRUD<CommunityProperty, CreateCommunityPropertyDTO, UpdateCommunityPropertyDTO> { private readonly _propertyId?; constructor(httpClient: HTTPClient, baseUrl: string, _propertyId?: string | undefined); persons(id?: string): CRUD<CommunityPropertyPerson, CreateCommunityPropertyPersonDTO, UpdateCommunityPropertyPersonDTO>; } //# sourceMappingURL=properties.d.ts.map