-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsteps.d.ts
17 lines (16 loc) · 872 Bytes
/
steps.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/// <reference types='codeceptjs' />
type steps_file = typeof import('./testing/steps/steps_file.js');
type MainPage = typeof import('./testing/pages/Main.js');
type CommonPage = typeof import('./testing/pages/Common.js');
type DetailPage = typeof import('./testing/pages/Detail.js');
type DataTables = typeof import('./testing/datatables/index.js');
type DbHelper = import('./testing/helpers/dbHelper.js');
type ResembleHelper = import('codeceptjs-resemblehelper');
declare namespace CodeceptJS {
interface SupportObject { I: I, current: any, MainPage: MainPage, CommonPage: CommonPage, DetailPage: DetailPage, DataTables: DataTables }
interface Methods extends Puppeteer, DbHelper, ResembleHelper {}
interface I extends ReturnType<steps_file>, WithTranslation<DbHelper>, WithTranslation<ResembleHelper> {}
namespace Translation {
interface Actions {}
}
}