steps.d.ts 443 B

1234567891011121314151617
  1. /* eslint-disable @typescript-eslint/no-empty-interface */
  2. /// <reference types='codeceptjs' />
  3. type steps_file = typeof import("./steps_file.js");
  4. declare namespace CodeceptJS {
  5. interface SupportObject {
  6. I: CodeceptJS.I;
  7. }
  8. interface CallbackOrder {
  9. [0]: CodeceptJS.I;
  10. }
  11. interface Methods extends CodeceptJS.Puppeteer {}
  12. interface I extends ReturnType<steps_file> {}
  13. namespace Translation {
  14. type Actions = {};
  15. }
  16. }