UNPKG

@eleva-io/erp-sdk

Version:

SDK oficial para el ERP de Eleva

12 lines 588 B
import { HTTPClient } from '../../../../utils/http'; import { MeetingPoll, MeetingPollExtended, CreateMeetingPollDTO, UpdateMeetingPollDTO } from '../types'; export declare class MeetingPollsAPI { private readonly _httpClient; private readonly _basePath; constructor(_httpClient: HTTPClient, _basePath: string); find(): Promise<MeetingPollExtended[]>; create(data: CreateMeetingPollDTO): Promise<MeetingPoll>; update(pollId: string, data: UpdateMeetingPollDTO): Promise<MeetingPoll>; delete(pollId: string): Promise<void>; } //# sourceMappingURL=polls.d.ts.map