DocSpace-client/packages/client/steps.d.ts

12 lines
317 B
TypeScript
Raw Normal View History

2021-12-21 07:59:11 +00:00
/// <reference types='codeceptjs' />
type steps_file = typeof import('./steps_file.js');
declare namespace CodeceptJS {
interface SupportObject { I: I, current: any }
interface Methods extends Playwright {}
interface I extends ReturnType<steps_file> {}
namespace Translation {
interface Actions {}
}
}