ee-ts-util
Version:
typescript utilities and functions
9 lines (8 loc) • 359 B
TypeScript
export declare type GSuiteConfig = {
clientEmail: string;
privateKey: string;
impersonationEmail: string;
organisation: string;
};
export declare const buildGSuiteClient: (config: GSuiteConfig, scopes?: string[] | undefined, impersonationEmail?: string | undefined) => any;
export declare const authorize: (gSuiteClient: any) => Promise<any>;