AngularTS
    Preparing search index...

    Interface PublicLinkFn

    A function returned by the $compile service that links a compiled template to a scope.

    interface PublicLinkFn {
        post?: unknown;
        pre?: unknown;
        (
            scope: Scope,
            cloneAttachFn?: CloneAttachFn,
            options?: TemplateLinkingFunctionOptions,
        ): Node | Element | ChildNode | Node[];
    }
    • Parameters

      • scope: Scope
      • OptionalcloneAttachFn: CloneAttachFn
      • Optionaloptions: TemplateLinkingFunctionOptions

      Returns Node | Element | ChildNode | Node[]

    Index

    Properties

    Properties

    Optionalpost

    post?: unknown
    pre?: unknown