nylas
Version:
A NodeJS wrapper for the Nylas REST API for email, contacts, and calendar.
19 lines (18 loc) • 830 B
TypeScript
import { Overrides } from '../config.js';
import { NylasResponse } from '../models/response.js';
import { SchedulerAvailabilityResponse, GetSchedulerAvailabilityQueryParams } from '../models/scheduler.js';
import { Resource } from './resource.js';
/**
* The parameters for the {@link SchedulerAvailability.get} method
* @property queryParams The query parameters to include in the request
*/
export interface GetSchedulerAvailabilityParams {
queryParams: GetSchedulerAvailabilityQueryParams;
}
export declare class SchedulerAvailability extends Resource {
/**
* Get availability for a scheduling configuration
* @return The availability response with time slots
*/
get({ queryParams, overrides, }: GetSchedulerAvailabilityParams & Overrides): Promise<NylasResponse<SchedulerAvailabilityResponse>>;
}