mirror of
https://github.com/HangarMC/Hangar.git
synced 2024-11-27 06:01:08 +08:00
13 lines
410 B
TypeScript
13 lines
410 B
TypeScript
/// <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, ExpectHelper {}
|
|
interface I extends WithTranslation<Methods> {}
|
|
namespace Translation {
|
|
interface Actions {}
|
|
}
|
|
}
|