UNPKG

@nebular/theme

Version:
19 lines (18 loc) 507 B
/** * @license * Copyright Akveo. All Rights Reserved. * Licensed under the MIT License. See License.txt in the project root for license information. */ import { InjectionToken } from '@angular/core'; export declare const NB_TIME_PICKER_CONFIG: InjectionToken<unknown>; export interface NbTimePickerConfig { twelveHoursFormat?: boolean; format?: string; } export interface NbSelectedTimeModel { value: string; } export interface NbSelectedTimePayload<D> { time: D; save?: boolean; }