mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-16 15:00:26 +00:00
Fixed lint errors
This commit is contained in:
@@ -393,6 +393,6 @@ myApp.controller('StickyController', ($scope: TestScope, $mdSticky: ng.material.
|
||||
const stickyElement = angular.element(new Element());
|
||||
const cloneStickyElement = stickyElement.clone();
|
||||
|
||||
$mdSticky($scope, stickyElement);
|
||||
$mdSticky($scope, stickyElement, cloneStickyElement);
|
||||
});
|
||||
$mdSticky($scope, stickyElement);
|
||||
$mdSticky($scope, stickyElement, cloneStickyElement);
|
||||
});
|
||||
|
||||
Vendored
+1
-4
@@ -495,9 +495,6 @@ declare module 'angular' {
|
||||
configure(options: IProgressCircularConfig): void;
|
||||
}
|
||||
|
||||
interface IStickyService {
|
||||
(scope: IScope, element: JQuery): void;
|
||||
(scope: IScope, element: JQuery, elementClone: JQuery): void;
|
||||
}
|
||||
type IStickyService = (scope: IScope, element: JQuery, elementClone?: JQuery) => void;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user