mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2025-12-24 02:39:18 -05:00
15 lines
328 B
TypeScript
15 lines
328 B
TypeScript
/* eslint-disable @typescript-eslint/no-namespace */
|
|
/// <reference types="cypress" />
|
|
|
|
declare global {
|
|
namespace Cypress {
|
|
interface Chainable {
|
|
login(email?: string, password?: string): Chainable<Element>;
|
|
loginAsAdmin(): Chainable<Element>;
|
|
loginAsUser(): Chainable<Element>;
|
|
}
|
|
}
|
|
}
|
|
|
|
export {};
|