UNPKG

ngx-bootstrap

Version:
12 lines (11 loc) 468 B
import { Action } from 'ngx-bootstrap/mini-ngrx'; import { TimepickerComponentState, TimepickerControls } from '../timepicker.models'; export interface TimepickerState { value?: Date; config: TimepickerComponentState; controls: TimepickerControls; } export declare const initialState: TimepickerState; export declare function timepickerReducer(state: TimepickerState | undefined, action: Action): TimepickerState | (TimepickerState & { value: any; });