///
declare namespace Cypress {
interface Chainable {
/**
* Should run before each spec!
*/
init(user?: string): Chainable;
/**
* Should run after each spec!
*/
cleanup(): Chainable;
/**
* Deletes user uploads before tests
*/
deleteAllProjects(): Chainable;
}
}