baasic-sdk-javascript
Version:
JavaScript SDK provides core functionality for building web and mobile applications on [Baasic](http://www.baasic.com/).
11 lines (10 loc) • 589 B
TypeScript
import { CalendarLookups, CalendarACLClient, CalendarEventRsvpAttendeeClient, CalendarClient, CalendarEventClient, CalendarEventRsvpClient } from './';
export declare class Root {
lookups: CalendarLookups;
ACL: CalendarACLClient;
attendee: CalendarEventRsvpAttendeeClient;
calendar: CalendarClient;
event: CalendarEventClient;
rsvp: CalendarEventRsvpClient;
constructor(lookups: CalendarLookups, ACL: CalendarACLClient, attendee: CalendarEventRsvpAttendeeClient, calendar: CalendarClient, event: CalendarEventClient, rsvp: CalendarEventRsvpClient);
}