1 |
|
2 |
|
3 |
|
4 |
|
5 |
|
6 | import { InjectionToken } from '@angular/core';
|
7 | export declare const NB_TIME_PICKER_CONFIG: InjectionToken<unknown>;
|
8 | export interface NbTimepickerLocalizationConfig {
|
9 | hoursText: string;
|
10 | minutesText: string;
|
11 | secondsText: string;
|
12 | ampmText: string;
|
13 | }
|
14 | export declare const NB_DEFAULT_TIMEPICKER_LOCALIZATION_CONFIG: NbTimepickerLocalizationConfig;
|
15 | export interface NbTimePickerConfig {
|
16 | twelveHoursFormat?: boolean;
|
17 | format?: string;
|
18 | localization?: NbTimepickerLocalizationConfig;
|
19 | }
|
20 | export interface NbSelectedTimeModel {
|
21 | value: string;
|
22 | }
|
23 | export interface NbSelectedTimePayload<D> {
|
24 | time: D;
|
25 | save?: boolean;
|
26 | }
|