materialize-angular
Version:
Material UI Angular library
26 lines (25 loc) • 933 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 { AfterContentChecked, ElementRef, EventEmitter } from '@angular/core';
import { SelectOptionModel } from './select-option.model';
export declare class SelectOptionComponent implements AfterContentChecked, SelectOptionModel {
static readonly defaultProps: SelectOptionModel;
optionTemplateRef: ElementRef;
onClickEmitter: EventEmitter<string | number | boolean | null>;
className: string;
disabled: boolean;
value: string | number | boolean | null;
prefix: string;
content: HTMLElement;
isActive: boolean;
transitionDuration: number;
constructor();
ngAfterContentChecked(): void;
onClick(): void;
emitClick(): void;
}