AngularTS
    Preparing search index...

    Type Alias DirectiveLinkFn<T>

    DirectiveLinkFn:
        | BivariantDirectiveLinkFn<[scope: ng.Scope, element: HTMLElement]>
        | BivariantDirectiveLinkFn<
            [
                scope: ng.Scope,
                element: HTMLElement,
                controller: TController<T>,
                transclude?: ng.TranscludeFn,
            ],
        >
        | BivariantDirectiveLinkFn<
            [scope: ng.Scope, element: HTMLElement, transclude: ng.TranscludeFn],
        >

    Type Parameters

    • T