@nebular/theme
Version:
@nebular/theme
19 lines (18 loc) • 507 B
TypeScript
/**
* @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;
}