|
@@ -74,9 +74,6 @@ export interface Tracker
|
74
|
74
|
/** check if this tracker is of a certain type */
|
75
|
75
|
is<T extends keyof TrackerType>(type: T): this is TrackerType[T];
|
76
|
76
|
|
77
|
|
- /** a string that identifies the type of the tracker @deprecated */
|
78
|
|
- readonly type: keyof TrackerType;
|
79
|
|
-
|
80
|
77
|
/** initialize tracker @internal */
|
81
|
78
|
_init(session: Session): SpeedyPromise<void>;
|
82
|
79
|
|
|
@@ -91,6 +88,10 @@ export interface Tracker
|
91
|
88
|
|
92
|
89
|
/** stats related to this tracker @internal */
|
93
|
90
|
readonly _stats: string;
|
|
91
|
+
|
|
92
|
+ /** a string that identifies the type of the tracker
|
|
93
|
+ * @deprecated use is() instead */
|
|
94
|
+ readonly type: keyof TrackerType;
|
94
|
95
|
}
|
95
|
96
|
|
96
|
97
|
/**
|