UNPKG

strapi-google-analytics-dashboard

Version:

A plug-and-play Google Analytics 4 dashboard for Strapi 5.x. No code required — just install, configure your credentials, and instantly start tracking GA metrics directly in your admin panel.

11 lines (10 loc) 310 B
import type { Core } from '@strapi/strapi'; import { Context } from 'koa'; declare const controller: ({ strapi }: { strapi: Core.Strapi; }) => { index(ctx: any): Promise<void>; getSettings(ctx: Context): Promise<void>; updateSettings(ctx: Context): Promise<void>; }; export default controller;