systemprompt-mcp-interview
Version:
A specialized Model Context Protocol (MCP) server that enables AI-powered interview roleplay scenarios
11 lines (10 loc) • 606 B
TypeScript
import { GoogleBaseService } from "./google-base-service.js";
import { calendar_v3 } from "googleapis/build/src/apis/calendar/v3.js";
export declare class CalendarService extends GoogleBaseService {
private calendar;
constructor();
listEvents(calendarId?: string, maxResults?: number): Promise<calendar_v3.Schema$Event[]>;
getEvent(eventId: string, calendarId?: string): Promise<calendar_v3.Schema$Event>;
listCalendars(): Promise<calendar_v3.Schema$CalendarListEntry[]>;
searchEvents(query: string, calendarId?: string, maxResults?: number): Promise<calendar_v3.Schema$Event[]>;
}