UNPKG

gcalendar-cli

Version:

Google Calendar cli tool for Node.js

9 lines (8 loc) 279 B
import { Auth } from "googleapis"; interface AuthorizeOptions { scopes: string[]; tokenPath: string; credentialPath: string; } export declare function authorize({ scopes, tokenPath, credentialPath, }: AuthorizeOptions): Promise<Auth.OAuth2Client>; export {};