github-actions[bot]
GitHub deploy: a28ad06bf00153979a790d26595cb8ff8f3d18e2
a0c0dfa
raw
history blame contribute delete
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>;
}
}