-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsteps.d.ts
More file actions
16 lines (15 loc) · 716 Bytes
/
steps.d.ts
File metadata and controls
16 lines (15 loc) · 716 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/// <reference types='codeceptjs' />
type mainPage = typeof import('./pages/main_page');
type loginPage = typeof import('./pages/login_page');
type registrationPage = typeof import('./pages/registration_page');
type AuthHelper = import('./helpers/authHelper');
type PostsHelper = import('./helpers/postsHelper');
type CommonHelper = import('./helpers/commonHelper');
declare namespace CodeceptJS {
interface SupportObject { I: I, current: any, mainPage: mainPage, loginPage: loginPage, registrationPage: registrationPage }
interface Methods extends PlaywrightTs, AuthHelper, PostsHelper, CommonHelper {}
interface I extends WithTranslation<Methods> {}
namespace Translation {
interface Actions {}
}
}