11 lines
No EOL
249 B
TypeScript
11 lines
No EOL
249 B
TypeScript
|
|
declare global {
|
|
namespace Cypress {
|
|
interface Chainable {
|
|
registerUser(email: string, password: string): Chainable<void>,
|
|
loginUser(email: string, password: string): Chainable<void>
|
|
}
|
|
}
|
|
}
|
|
|
|
export { } |