/* eslint-disable @typescript-eslint/no-empty-interface */
|
/// <reference types='codeceptjs' />
|
type steps_file = typeof import("./steps_file.js");
|
|
declare namespace CodeceptJS {
|
interface SupportObject {
|
I: CodeceptJS.I;
|
}
|
interface CallbackOrder {
|
[0]: CodeceptJS.I;
|
}
|
interface Methods extends CodeceptJS.Puppeteer {}
|
interface I extends ReturnType<steps_file> {}
|
namespace Translation {
|
type Actions = {};
|
}
|
}
|