mirror of https://github.com/buster-so/buster.git
7 lines
181 B
TypeScript
7 lines
181 B
TypeScript
|
declare namespace Cypress {
|
||
|
interface Chainable {
|
||
|
loginToBuster(email?: string, password?: string): Chainable<void>;
|
||
|
askQuestion(question: string): Chainable<void>;
|
||
|
}
|
||
|
}
|