ngx-bootstrap
Version:
Native Angular Bootstrap Components
10 lines (9 loc) • 424 B
TypeScript
import { Action } from '../../mini-ngrx/index';
import { TimepickerComponentState, TimepickerControls } from '../timepicker.models';
export declare class TimepickerState {
value: Date;
config: TimepickerComponentState;
controls: TimepickerControls;
}
export declare const initialState: TimepickerState;
export declare function timepickerReducer(state: TimepickerState, action: Action): TimepickerState;