AngularTS
    Preparing search index...

    Interface TranscludeFunctionObject

    Represents advanced transclusion functions used in directives.

    interface TranscludeFunctionObject {
        isSlotFilled(slotName: string): boolean;
        transcludeWithoutScope(
            cloneAttachFn?: CloneAttachFunction,
            element?: Element,
            slotName?: string,
        ): Element;
        transcludeWithScope(
            scope: Scope,
            cloneAttachFn: CloneAttachFunction,
            element?: Element,
            slotName?: string,
        ): Element;
    }
    Index

    Methods

    • Checks if a named slot is filled

      Parameters

      • slotName: string

      Returns boolean

    • Transcludes content without creating a new scope

      Parameters

      Returns Element

    • Transcludes content with a new scope

      Parameters

      Returns Element