mirror of
https://github.com/HangarMC/Hangar.git
synced 2025-03-01 15:17:07 +08:00
13 lines
396 B
TypeScript
13 lines
396 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 {}
|
||
|
interface I extends WithTranslation<Methods> {}
|
||
|
namespace Translation {
|
||
|
interface Actions {}
|
||
|
}
|
||
|
}
|