-
-
Notifications
You must be signed in to change notification settings - Fork 750
Expand file tree
/
Copy pathsteps.d.ts
More file actions
20 lines (19 loc) · 617 Bytes
/
steps.d.ts
File metadata and controls
20 lines (19 loc) · 617 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/// <reference types='codeceptjs' />
type steps_file = typeof import('../../support/custom_steps.js')
type MyPage = typeof import('../../support/my_page.js')
type SecondPage = typeof import('../../support/second_page.js')
type CurrentPage = typeof import('./po/custom_steps.js')
declare namespace CodeceptJS {
interface SupportObject {
I: I
current: any
MyPage: MyPage
SecondPage: SecondPage
CurrentPage: CurrentPage
}
interface Methods extends FileSystem {}
interface I extends ReturnType<steps_file>, WithTranslation<Methods> {}
namespace Translation {
interface Actions {}
}
}