materialize-angular
Version:
Material UI Angular library
20 lines (19 loc) • 669 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 { EventEmitter } from '@angular/core';
import { GlossaryItemModel } from './glossary-item.model';
export declare class GlossaryItemComponent implements GlossaryItemModel {
static readonly defaultProps: GlossaryItemModel;
onClickEmitter: EventEmitter<string>;
className: string;
referenceId: string;
prefix: string;
isActive: boolean;
constructor();
onClick(event: any): void;
}