• Parameters

    • $aria: any

    Returns {
        priority: number;
        require: string;
        restrict: string;
        compile(elem: any, attr: any): {
            post(scope: any, elem: any, attr: any, ngModel: any): void;
        };
    }

    • priority: number
    • require: string
    • restrict: string
    • compile:function
      • Parameters

        • elem: any
        • attr: any

        Returns {
            post(scope: any, elem: any, attr: any, ngModel: any): void;
        }

        • post:function
          • Parameters

            • scope: any
            • elem: any
            • attr: any
            • ngModel: any

            Returns void

Properties

Properties

$inject: string[]