recall_sdk
Version:
Node js sdk for the recall ai api
17 lines (16 loc) • 364 B
TypeScript
import { Bot } from "./bot";
import { Auth } from "./auth";
import { CalendarV2 } from "./calendar-v2";
export declare class Recall {
private apiKey;
private v1Url;
private v2Url;
private region;
bot: Bot;
auth: Auth;
calendar: CalendarV2;
constructor({ apiKey, region }: {
apiKey: string;
region: string;
});
}