mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-08 08:04:25 +00:00
9 lines
157 B
TypeScript
9 lines
157 B
TypeScript
import './commands'
|
|
declare global {
|
|
namespace Cypress {
|
|
interface Chainable {
|
|
login: (email: string, password: string) => Chainable<Element>
|
|
}
|
|
}
|
|
}
|