md2
Version:
Angular2 based Material Design components, directives and services are Accordion, Autocomplete, Chips(Tags), Collapse, Colorpicker, Data Table, Datepicker, Dialog(Modal), Menu, Multiselect, Select, Tabs, Tags(Chips), Toast and Tooltip.
15 lines (14 loc) • 463 B
TypeScript
import { OverlayRef } from '../overlay-ref';
/**
* Describes a strategy that will be used by an overlay
* to handle scroll events while it is open.
*/
export interface ScrollStrategy {
enable: () => void;
disable: () => void;
attach: (overlayRef: OverlayRef) => void;
}
/**
* Returns an error to be thrown when attempting to attach an already-attached scroll strategy.
*/
export declare function getMdScrollStrategyAlreadyAttachedError(): Error;