UNPKG

tigrmail

Version:

API client for creating temporary email addresses to use in your E2E tests with Playwright, Cypress, and other frameworks.

7 lines (6 loc) 173 B
export type CreateInboxResponse = { inbox: string; }; export declare const createInboxApi: ({ authToken, }: { authToken: string; }) => Promise<CreateInboxResponse>;