We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
DialerContext
DialerRegistry
1 parent 6f947dd commit 54ec38dCopy full SHA for 54ec38d
dialer.ts
@@ -1,6 +1,6 @@
1
import { existsSync } from "fs";
2
import { resolve } from "path";
3
-import { Dialer } from "./dialer.types";
+import { Dialer, DialerContext } from "./dialer.types";
4
5
export class DialerRegistry {
6
private dialPath: string;
@@ -45,7 +45,7 @@ export class DialerRegistry {
45
}
46
47
48
- async executePreDialers(context: any) {
+ async executePreDialers(context: DialerContext) {
49
if (this.preDialers.length === 0) {
50
return;
51
@@ -55,7 +55,7 @@ export class DialerRegistry {
55
56
57
58
- async executePostDialers(context: any) {
+ async executePostDialers(context: DialerContext) {
59
if (this.postDialers.length === 0) {
60
61
0 commit comments