github-actions[bot]
GitHub deploy: 2c061777ca043e408beaa7492a12a3bb97f8b908
356f82a
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>;
}
}