channelape-sdk
Version:
A client for interacting with ChannelApe's API
11 lines (10 loc) • 389 B
TypeScript
import RequestClientWrapper from '../../RequestClientWrapper';
import Schedule from '../model/Schedule';
export default class SchedulesService {
private readonly client;
constructor(client: RequestClientWrapper);
get(scheduleId: string): Promise<Schedule>;
getAll(businessId: string): Promise<Schedule[]>;
private mapSchedulePromise;
private mapSchedulesPromise;
}