1
0
tl-vikunja/src/types/cypress.d.ts
Dominik Pschenitschni c6d214b9eb fix: cypress plugins
2022-07-04 21:50:48 +00:00

12 lines
222 B
TypeScript

import { mount } from 'cypress/vue'
type MountParams = Parameters<typeof mount>;
type OptionsParam = MountParams[1];
declare global {
namespace Cypress {
interface Chainable {
mount: typeof mount;
}
}
}