diff --git a/src/env.d.ts b/src/env.d.ts index 7c2f2987..44ba2fe8 100644 --- a/src/env.d.ts +++ b/src/env.d.ts @@ -43,3 +43,17 @@ declare namespace NodeJS { interface Navigator { brave?: { isBrave: () => boolean } } + +interface Window { + _cio: { + identify: ({ + id, + email, + created_at, + }: { + id: string + email: string + created_at: number + }) => void + } +} diff --git a/src/public/index.html b/src/public/index.html index 0906f2cc..a3e183d0 100644 --- a/src/public/index.html +++ b/src/public/index.html @@ -4,6 +4,23 @@ Subscape + + + )