AngularTS
    Preparing search index...

    Interface DirectivePrePost

    Defines optional pre/post link functions in directive compile phase.

    interface DirectivePrePost {
        post?: DirectiveLinkFn<unknown>;
        pre?: DirectiveLinkFn<unknown>;
    }
    Index

    Properties

    Properties

    Optionalpost

    post?: DirectiveLinkFn<unknown>
    pre?: DirectiveLinkFn<unknown>