UNPKG

507 BTypeScriptView Raw
1/**
2 * @license
3 * Copyright Akveo. All Rights Reserved.
4 * Licensed under the MIT License. See License.txt in the project root for license information.
5 */
6import { InjectionToken } from '@angular/core';
7export declare const NB_TIME_PICKER_CONFIG: InjectionToken<unknown>;
8export interface NbTimePickerConfig {
9 twelveHoursFormat?: boolean;
10 format?: string;
11}
12export interface NbSelectedTimeModel {
13 value: string;
14}
15export interface NbSelectedTimePayload<D> {
16 time: D;
17 save?: boolean;
18}