AngularTS
    Preparing search index...

    Type Alias DirectiveCompileFn

    DirectiveCompileFn: (
        templateElement?: HTMLElement,
        templateAttributes?: Attributes & Record<string, any>,
        transclude?: (...args: any[]) => any,
    ) => void | DirectiveLinkFn | DirectivePrePost

    A compile function used to prepare directives before linking.

    Type Declaration

      • (
            templateElement?: HTMLElement,
            templateAttributes?: Attributes & Record<string, any>,
            transclude?: (...args: any[]) => any,
        ): void | DirectiveLinkFn | DirectivePrePost
      • Parameters

        • OptionaltemplateElement: HTMLElement
        • OptionaltemplateAttributes: Attributes & Record<string, any>
        • Optionaltransclude: (...args: any[]) => any

        Returns void | DirectiveLinkFn | DirectivePrePost