DocSpace-client/web/ASC.Web.Client/steps.d.ts

12 lines
317 B
TypeScript
Raw Normal View History

2022-02-11 11:59:09 +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 {}
}
}