UNPKG
wdio-custom-commands-matchers
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
Custom wdio command and matchers
wdio-custom-commands-matchers
/
dist
/
types.d.ts
15 lines
(13 loc)
•
303 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
declare
namespace
WebdriverIO
{
interface
Element
{
toHaveInputBorder
(
options
: {
mode
:
'dark'
|
'light'
;
type
:
'valid'
|
'invalid'
; }):
Promise
<
void
>; } }
declare
namespace
ExpectWebdriverIO
{
interface
Matchers
<R, T> {
toHaveSpecialClass
(
expectedClass
:
string
): R; } }