Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

SetupTag

import type { SetupTag } from "https://googleapis.deno.dev/v1/tagmanager:v2.ts";

Represents a reference to atag that fires before another tag in order to set up dependencies.

interface SetupTag {
stopOnSetupFailure?: boolean;
tagName?: string;
}

§Properties

§
stopOnSetupFailure?: boolean
[src]

If true, fire the main tag if and only if the setup tag fires successfully. If false, fire the main tag regardless of setup tag firing status.

§
tagName?: string
[src]

The name of the setup tag.