4

Can you help me with next problem. I have a class:

export class MyClass {
    public static $inject: string[] = [
        "$element",
        "$scope"
    ];
    constructor(
        private $element: ng.IAugmentedJQuery, 
        private $scope: ng.IScope
    ) {}
}

and by Compodoc I had created documentation and got this:

constructor(MyClass: $element: undefined, $scope: undefined)

Can someone tell me how to fix the problem with incorrect types in documentation?

Daniel A. White
  • 187,200
  • 47
  • 362
  • 445

0 Answers0