// ESM-HMR Interface: `import.meta.hot` interface ImportMeta { // TODO: Import the exact .d.ts files from "esm-hmr" // https://github.com/pikapkg/esm-hmr hot: any; env: Record; } declare namespace Cypress { interface Chainable { /** * Get one or more DOM elements by `data-testid`. * * @example * cy.getId('searchButton') // Gets the */ getId(selector: string, ...args): Chainable; } }