10 lines
313 B
TypeScript
10 lines
313 B
TypeScript
export interface UIViewScrollProvider {
|
|
/**
|
|
* Uses standard anchorScroll behavior
|
|
*
|
|
* Reverts [[$uiViewScroll]] back to using the core [`$anchorScroll`](http://docs.angularjs.org/api/ng.$anchorScroll)
|
|
* service for scrolling based on the url anchor.
|
|
*/
|
|
useAnchorScroll(): void;
|
|
}
|