materialize-angular
Version:
Material UI Angular library
23 lines (22 loc) • 883 B
TypeScript
/**
* @license
* Copyright Workylab. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://raw.githubusercontent.com/workylab/materialize-angular/master/LICENSE
*/
import { AfterContentInit, EventEmitter, QueryList } from '@angular/core';
import { ScrollSpyItemComponent } from './scroll-spy-item/scroll-spy-item.component';
import { ScrollSpyModel } from './scroll-spy.model';
export declare class ScrollSpyComponent implements ScrollSpyModel, AfterContentInit {
static readonly defaultProps: ScrollSpyModel;
items: QueryList<ScrollSpyItemComponent>;
onChangeEmitter: EventEmitter<string>;
className: string;
itemId: string;
constructor();
ngAfterContentInit(): void;
onScroll(): void;
validateScroll(): void;
getCurrentItem(): ScrollSpyItemComponent;
}