UNPKG

622 BTypeScriptView Raw
1import { NbDateService } from './date.service';
2import * as i0 from "@angular/core";
3export declare class NbCalendarTimeModelService<D> {
4 protected dateService: NbDateService<D>;
5 readonly MINUTES_AND_SECONDS = 60;
6 constructor(dateService: NbDateService<D>);
7 getHoursRange(step?: number): D[];
8 getResetTime(): D;
9 paddToTwoSymbols(n: number): string;
10 buildDateFormat(twelveHoursFormat: boolean, withSeconds?: boolean): string;
11 static ɵfac: i0.ɵɵFactoryDeclaration<NbCalendarTimeModelService<any>, never>;
12 static ɵprov: i0.ɵɵInjectableDeclaration<NbCalendarTimeModelService<any>>;
13}