-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsteps.d.ts
More file actions
19 lines (18 loc) · 1.1 KB
/
Copy pathsteps.d.ts
File metadata and controls
19 lines (18 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/// <reference types='codeceptjs' />
type steps_file = typeof import('./steps_file.js');
type homePage = typeof import('./pages/home.js');
type authPage = typeof import('./pages/auth.js');
type createAccountPage = typeof import('./pages/createAccount.js');
type productPage = typeof import('./pages/product.js');
type tryToHelper = typeof import('./helpers/tryTo.js');
type ChaiWrapper = import('codeceptjs-chai');
type PriceConverter = import('./helpers/priceConverter.js');
type EmailGenerator = import('./helpers/emailGenerator.js');
declare namespace CodeceptJS {
interface SupportObject { I: I, current: any, homePage: homePage, authPage: authPage, createAccountPage: createAccountPage, productPage: productPage, tryToHelper: tryToHelper }
interface Methods extends Playwright, ChaiWrapper, PriceConverter, EmailGenerator, REST, JSONResponse, FileSystem {}
interface I extends ReturnType<steps_file>, WithTranslation<ChaiWrapper>, WithTranslation<PriceConverter>, WithTranslation<EmailGenerator>, WithTranslation<JSONResponse>, WithTranslation<FileSystem> {}
namespace Translation {
interface Actions {}
}
}