UNPKG

@builder.io/qwik

Version:

An Open-Source sub-framework designed with a focus on server-side-rendering, lazy-loading, and styling/animation.

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; } } }