UNPKG

igniteui-angular

Version:

Ignite UI for Angular is a dependency-free Angular toolkit for building modern web apps

26 lines (25 loc) 557 B
import { ScrollStrategy } from './scroll-strategy'; /** * Empty scroll strategy. Does nothing. */ export declare class NoOpScrollStrategy extends ScrollStrategy { constructor(); /** * Initializes the strategy. Should be called once */ initialize(): void; /** * Detaches the strategy * ```typescript * settings.scrollStrategy.detach(); * ``` */ attach(): void; /** * Detaches the strategy * ```typescript * settings.scrollStrategy.detach(); * ``` */ detach(): void; }