github-actions[bot]
GitHub deploy: 8345bb55d4f0266b504bcd1c014f448b82d94527
4c3ddbb
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>;
}
}