gmail-to-exchange365
Version:
Complete Gmail to Exchange 365 migration tool with UI - Migrate emails, attachments, and folders seamlessly
10 lines • 364 B
TypeScript
import { EmailMessage } from "./types";
interface GmailToken {
access_token: string;
refresh_token?: string;
expiry_date?: number;
}
export declare function fetchAllEmails(gToken: GmailToken): Promise<EmailMessage[]>;
export declare function fetchGmailLabels(gToken: GmailToken): Promise<string[]>;
export {};
//# sourceMappingURL=gmailFetcher.d.ts.map