2021-03-31 13:15:40 +03:00
|
|
|
/**
|
2023-01-13 19:32:57 +03:00
|
|
|
* @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>
|
2021-03-31 13:15:40 +03:00
|
|
|
*
|
2023-01-13 19:32:57 +03:00
|
|
|
* @author John Molakvoæ <skjnldsv@protonmail.com>
|
2021-03-31 13:15:40 +03:00
|
|
|
*
|
2022-01-11 19:18:11 +03:00
|
|
|
* @license AGPL-3.0-or-later
|
2021-03-31 13:15:40 +03:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
2023-01-13 19:32:57 +03:00
|
|
|
/* eslint-disable */
|
2023-04-21 12:04:08 +03:00
|
|
|
import { mount } from '@cypress/vue2'
|
2021-03-31 13:15:40 +03:00
|
|
|
|
2023-01-13 19:32:57 +03:00
|
|
|
type MountParams = Parameters<typeof mount>;
|
|
|
|
type OptionsParam = MountParams[1];
|
2019-02-11 13:27:51 +03:00
|
|
|
|
2023-01-13 19:32:57 +03:00
|
|
|
declare global {
|
|
|
|
namespace Cypress {
|
|
|
|
interface Chainable {
|
|
|
|
mount: typeof mount;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|