by-onlineeditor/cypress/global.d.ts

14 lines
297 B
TypeScript

/// <reference types="cypress" />
declare namespace Editor {
import('../src/editor/index')
// eslint-disable-next-line @typescript-eslint/no-unused-vars
import Editor from '../src/editor/index'
}
declare namespace Cypress {
interface Chainable {
getEditor(): Chainable<Editor>
}
}