github-actions[bot]
GitHub deploy: 7bc88eb00d03728537d6153dfc14a3c23e6b7587
48ae63b
raw
history blame
No virus
340 Bytes
// load the global Cypress types
/// <reference types="cypress" />
declare namespace Cypress {
interface Chainable {
login(email: string, password: string): Chainable<Element>;
register(name: string, email: string, password: string): Chainable<Element>;
registerAdmin(): Chainable<Element>;
loginAdmin(): Chainable<Element>;
}
}