UNPKG

@ioniczoo/starfish-rating-component

Version:

Rating Component for Ionic: Our bright starfish will help you carry out rating. Our Starfish is a Rating Component.

22 lines (21 loc) 628 B
import { EventEmitter } from '@angular/core'; import { ControlValueAccessor } from '@angular/forms'; export declare class RatingComponent implements ControlValueAccessor { change: EventEmitter<any>; value: number; stars: number; color: string; background: string; icon: string; items: Array<number>; private onTouchedCallback; private onChangeCallback; constructor(); ngAfterViewInit(): void; setStar(star: any): void; writeValue(value: number): void; registerOnTouched(fn: any): void; registerOnChange(fn: any): void; } export declare class RatingComponentModule { }