Files
cypress/packages/server/index.d.ts
Jordan 4131b1fa84 feat(angular): angular mount (#22858)
Co-authored-by: Zachary Williams <zachjw34@gmail.com>
2022-07-26 17:44:44 -05:00

37 lines
1.2 KiB
TypeScript

/// <reference path="../../cli/types/cy-blob-util.d.ts" />
/// <reference path="../../cli/types/cy-bluebird.d.ts" />
/// <reference path="../../cli/types/cy-minimatch.d.ts" />
/// <reference path="../../cli/types/lodash/index.d.ts" />
/// <reference path="../../cli/types/sinon/index.d.ts" />
/// <reference path="../../cli/types/jquery/index.d.ts" />
/// <reference path="../../cli/types/mocha/index.d.ts" />
/// <reference path="../../cli/types/cypress-npm-api.d.ts" />
/// <reference path="../../cli/types/net-stubbing.d.ts" />
/// <reference path="../../cli/types/cypress.d.ts" />
/// <reference path="../../cli/types/cypress-global-vars.d.ts" />
/// <reference path="../../cli/types/cypress-type-helpers.d.ts" />
// types for the `server` package
export namespace CyServer {
// TODO: pull this from main types
export interface Config {
blockHosts: string | string[]
clientRoute: string
experimentalSourceRewriting: boolean
modifyObstructiveCode: boolean
experimentalModifyObstructiveThirdPartyCode: boolean
/**
* URL to Cypress's runner.
*/
responseTimeout: number
}
export interface Socket {
toDriver: (eventName: string, ...args: any) => void
}
}
export default CyServer