///
declare namespace Cypress {
type AbLoginParams = {
email?: string;
password?: string;
loginPath?: string;
}
type AbKeepLoggedInParams = {
cookie?: string;
}
interface Chainable {
abLogin(params?: AbLoginParams): Chainable;
abLoginAPI(params?: AbLoginParams): Chainable;
abGetProperty(propertyPath: string, selector?: string): Chainable;
abKeepLoggedIn(params?: AbKeepLoggedInParams): Chainable;
}
}