AngularTS
    Preparing search index...

    Type Alias AnnotatedFactory

    AnnotatedFactory: [...string[], (...args: any[]) => any]

    A dependency-annotated factory array used by AngularTS DI system.

    It consists of zero or more dependency names (as strings), followed by a factory function that takes those dependencies as arguments.

    Example:

    ['dep1', 'dep2', function(dep1, dep2) { ... }]