// Load type definitions that come with Cypress module /// declare global { namespace Cypress { interface Chainable { getByTestId(selector: string, ...args: (Partial | undefined)[]): Chainable> signin(email: string, password: string): void; signup(email: string, firstName: string, lastName: string, password: string): void; } } } export {};