UNPKG

lml-main

Version:

This is now a mono repository published into many standalone packages.

7 lines (6 loc) 373 B
import { SelectTrayToLeftAction, SelectTrayToRightAction, SetSelectedTrayAction } from '../../common/actions/tray'; export interface TrayState { selectedTrayId: string; } export declare const initiaTrayState: TrayState; export declare const trayReducer: (state: TrayState, action: SetSelectedTrayAction | SelectTrayToLeftAction | SelectTrayToRightAction) => TrayState;