We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f502fd commit 9d15774Copy full SHA for 9d15774
docs/.vitepress/theme/components/CookieConsent.vue
@@ -1,6 +1,16 @@
1
<script setup lang="ts">
2
import { ref, onMounted } from "vue";
3
4
+declare global {
5
+ interface Window {
6
+ gtag?: (...args: any[]) => void;
7
+ posthog?: {
8
+ opt_in_capturing?: () => void;
9
+ opt_out_capturing?: () => void;
10
+ };
11
+ }
12
+}
13
+
14
const STORAGE_KEY = "plane-docs-cookie-consent";
15
const showBanner = ref(false);
16
0 commit comments