UNPKG

nuxt-gtag

Version:
11 lines (10 loc) 370 B
import type { ModuleOptions } from '../module.js'; import type { GoogleTagOptions } from './types.js'; export declare function gtag(..._args: any[]): void; /** * Initialize the Google tag. */ export declare function initGtag({ tags }: { tags: GoogleTagOptions[]; }): void; export declare function resolveTags(options: Required<ModuleOptions>): GoogleTagOptions[];