We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5114e3 commit 1998c19Copy full SHA for 1998c19
1 file changed
src/Commander.ts
@@ -29,7 +29,7 @@ class Commander {
29
this.command(null, 'setRoot', arguments);
30
}
31
32
- static delay() {
+ static delay(lineNumber?: Number) {
33
this.command(null, 'delay', arguments);
34
35
@@ -51,8 +51,8 @@ class Commander {
51
return this;
52
53
54
- delay(): this {
55
- Commander.delay();
+ delay(lineNumber?: Number): this {
+ Commander.delay(lineNumber);
56
57
58
0 commit comments