Closed urish closed 6 years ago
The current type declaration for $_$twiz.track() specifies that the second argument is a number, and the third one is a string, but it's actually the other way around.
$_$twiz.track()
Signature:
declare namespace $_$twiz { function track<T>(v: T, p: number, f: string): T; }
Actual function definition:
export const track = (value: any, filename: string, offset: number) => { // ... }
The current type declaration for
$_$twiz.track()
specifies that the second argument is a number, and the third one is a string, but it's actually the other way around.Signature:
Actual function definition: