mirror of
https://github.com/cypress-io/cypress.git
synced 2026-04-23 23:49:43 -05:00
af472b6419
Co-authored-by: Zach Bloomquist <github@chary.us>
18 lines
393 B
TypeScript
18 lines
393 B
TypeScript
/// <reference path="../../cli/types/chai-jquery/index.d.ts" />
|
|
/// <reference path="../../cli/types/sinon-chai/index.d.ts" />
|
|
/// <reference path="../../cli/types/cypress-expect.d.ts" />
|
|
|
|
/// <reference path="../ts/index.d.ts" />
|
|
|
|
declare global {
|
|
interface Window {
|
|
Cypress: Cypress.Cypress
|
|
}
|
|
}
|
|
|
|
import $Cypress from './src/main'
|
|
|
|
export default $Cypress
|
|
|
|
export * from './src/main'
|