UNPKG
cabbie-sync
Version:
latest (0.12.1)
0.12.1
0.12.0
0.11.8
0.10.7
0.10.6
0.10.3
0.10.2
0.10.1
0.10.0
0.9.1
0.9.0
0.8.2
0.8.1
0.6.0
0.5.3
0.5.2
0.5.1
0.5.0
0.4.0
0.3.0
0.2.4
0.2.3
A synchronous webdriver client
github.com/ForbesLindesay/cabbie
ForbesLindesay/cabbie
cabbie-sync
/
lib
/
alert.d.ts
9 lines
(8 loc)
•
199 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import BaseClass
from
'./base-class'
;
declare
class
Alert
extends
BaseClass
{
getText
():
string
;
setText
(
text
:
string
):
void
;
accept
():
void
;
dismiss
():
void
; } export
default
Alert;