10 lines
167 B
TypeScript
10 lines
167 B
TypeScript
|
import { Definition } from 'nightwatch';
|
||
|
|
||
|
declare module 'nightwatch' {
|
||
|
interface NightwatchCustomPageObjects {
|
||
|
}
|
||
|
|
||
|
export interface NightwatchCustomCommands {
|
||
|
}
|
||
|
}
|