diff --git a/src/index.ts b/src/index.ts index 90b5945..9741e73 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,4 +1,10 @@ interface Fathom { + /** + * See https://usefathom.com/docs/features/exclude + */ + blockTrackingForMe?: () => void; + enableTrackingForMe?: () => void; + trackPageview: (opts?: PageViewOptions) => void; trackGoal: (code: string, cents: number) => void; }