UNPKG

@qwik.dev/core

Version:

An open source framework for building instant loading web apps at any scale, without the extra effort.

15 lines (11 loc) 268 B
/// <reference types="cypress" /> import type { mount } from "cypress-ct-qwik"; type MountParams = Parameters<typeof mount>; type OptionsParam = MountParams[0]; declare global { namespace Cypress { interface Chainable { mount: typeof mount; } } }