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

TeardownTag

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

Represents a tag that fires after another tag in order to tear down dependencies.

interface TeardownTag {
stopTeardownOnFailure?: boolean;
tagName?: string;
}

§Properties

§
stopTeardownOnFailure?: boolean
[src]

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

§
tagName?: string
[src]

The name of the teardown tag.