Hangar/e2e/steps.d.ts

13 lines
396 B
TypeScript
Raw Normal View History

/// <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 {}
interface I extends WithTranslation<Methods> {}
namespace Translation {
interface Actions {}
}
}