9 lines
132 B
TypeScript
9 lines
132 B
TypeScript
declare module 'cypress' {
|
|
global {
|
|
namespace Cypress {
|
|
interface Chainable {
|
|
login(): void
|
|
}
|
|
}
|
|
}
|
|
}
|