Hangar/e2e/steps.d.ts
2024-11-23 13:09:27 +01:00

13 lines
410 B
TypeScript

/// <reference types='codeceptjs' />
type util = typeof import('./utils/util');
type IndexPage = typeof import('./utils/IndexPage');
declare namespace CodeceptJS {
interface SupportObject { I: I, current: any, util: util, IndexPage: IndexPage }
interface Methods extends WebDriver, ExpectHelper {}
interface I extends WithTranslation<Methods> {}
namespace Translation {
interface Actions {}
}
}