novo-elements
Version:
Bullhorn's NOVO Element Repository for Angular 2
17 lines (16 loc) • 440 B
TypeScript
import { OnChanges, SimpleChanges } from '@angular/core';
export declare class CardBestTimeElement implements OnChanges {
label: string;
time: string;
day: string;
hideLabel: boolean;
timeIcon: string;
timeStyle: string;
dayLowerCase: string;
dataAutomationId: string;
ngOnChanges(changes?: SimpleChanges): void;
getTimeOfDayStyleAndIcon(time: any): {
icon: any;
style: any;
};
}