mirror of
https://github.com/Mastermindzh/react-starter-kit.git
synced 2025-01-21 02:50:55 +01:00
15 lines
314 B
TypeScript
15 lines
314 B
TypeScript
/* eslint-disable no-unused-vars */
|
|
// load type definitions that come with Cypress module
|
|
/// <reference types="cypress" />
|
|
export {};
|
|
declare global {
|
|
namespace Cypress {
|
|
interface Chainable {
|
|
/**
|
|
* Login to the oidc provider
|
|
*/
|
|
oidcLogin(): Chainable<Response<any>>;
|
|
}
|
|
}
|
|
}
|