@revoloo/cypress6
Version:
Cypress.io end to end testing tool
14 lines (10 loc) • 442 B
TypeScript
/// <reference path="../../cli/types/cypress.d.ts" />
declare module 'react-devtools-inline/frontend' {
import * as React from 'react'
export type DevtoolsProps = { browserTheme: 'dark' | 'light'}
export const initialize: (window: Window) => React.ComponentType<DevtoolsProps>;
}
declare module 'react-devtools-inline/backend' {
export const initialize: (window: Window) => void
export const activate: (window: Window) => void
}