-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsteps.d.ts
20 lines (19 loc) · 1.24 KB
/
steps.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/// <reference types='codeceptjs' />
type AddRemoveElementsPage = typeof import('./pages/addRemoveElementsPage.js');
type CheckboxesPage = typeof import('./pages/checkboxesPage.js');
type ContextMenuPage = typeof import('./pages/contextMenuPage.js');
type DropdownPage = typeof import('./pages/dropdownPage.js');
type DynamicLoadingPage = typeof import('./pages/dynamicLoadingPage.js');
type ForgotPasswordPage = typeof import('./pages/forgotPasswordPage.js');
type HoversPage = typeof import('./pages/hoversPage.js');
type KeyPressesPage = typeof import('./pages/keyPressesPage.js');
type LoginPage = typeof import('./pages/loginPage.js');
type StatusCodesPage = typeof import('.pages/statusCodesPage.js');
declare namespace CodeceptJS {
interface SupportObject { I: I, current: any, AddRemoveElementsPage: AddRemoveElementsPage, CheckboxesPage: CheckboxesPage, ContextMenuPage: ContextMenuPage, DropdownPage: DropdownPage, DynamicLoadingPage: DynamicLoadingPage, ForgotPasswordPage: ForgotPasswordPage, HoversPage: HoversPage, KeyPressesPage: KeyPressesPage, LoginPage: LoginPage, StatusCodesPage: StatusCodesPage }
interface Methods extends Playwright {}
interface I extends WithTranslation<Methods> {}
namespace Translation {
interface Actions {}
}
}