// load the global Cypress types
/// 
declare namespace Cypress {
	interface Chainable {
		login(email: string, password: string): Chainable;
		register(name: string, email: string, password: string): Chainable;
		registerAdmin(): Chainable;
		loginAdmin(): Chainable;
		uploadTestDocument(suffix: any): Chainable;
		deleteTestDocument(suffix: any): Chainable;
	}
}