UNPKG

706 BTypeScriptView Raw
1import { NgbScrollSpyProcessChanges } from './scrollspy.service';
2import * as i0 from "@angular/core";
3/**
4 * A configuration service for the [`NgbScrollSpyService`](#/components/scrollspy/api#NgbScrollSpyService).
5 *
6 * You can inject this service, typically in your root component, and customize the values of its properties in
7 * order to provide default values for all scrollspies used in the application.
8 *
9 * @since 15.1.0
10 */
11export declare class NgbScrollSpyConfig {
12 scrollBehavior: 'auto' | 'smooth';
13 processChanges: NgbScrollSpyProcessChanges;
14 static ɵfac: i0.ɵɵFactoryDeclaration<NgbScrollSpyConfig, never>;
15 static ɵprov: i0.ɵɵInjectableDeclaration<NgbScrollSpyConfig>;
16}