UNPKG

materialize-angular

Version:
21 lines (20 loc) 746 B
/** * @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 { ElementRef, EventEmitter } from '@angular/core'; import { SliderOptionModel } from './slider-option.model'; export declare class SliderOptionComponent implements SliderOptionModel { static readonly defaultProps: SliderOptionModel; templateRef: ElementRef; className: string; value: number | string | boolean | null; onClickEmitter: EventEmitter<number | string | boolean | null>; prefix: string; isActive: boolean; constructor(); onClick(): void; }