open-webui1 / cypress /support /index.d.ts
github-actions[bot]
GitHub deploy: 47c76ab5fe2fe8277fc8015e296649f77086b0ca
9f5f235
// 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>;
}
}