UNPKG

vue-tag-manager

Version:

Easy to use Google Tag Manager implementation for Vue

11 lines (10 loc) 349 B
import { TagManagerOptions } from "./tag-manager"; export interface NativeOptions extends TagManagerOptions { /** * Variable name of Tag Manager injected into the DOM. * Defaults to `TagManager` */ TagManagerVariableName?: string; } declare const initialize: (options: NativeOptions) => void; export { initialize };