UNPKG

@myklt/splitter

Version:

Create resizable split views - like in VS Code

10 lines (9 loc) 270 B
import { Action } from './reducer.actions'; import Pair from '../pair'; export interface State { isReady: boolean; isDragging: boolean; draggingIdx?: number; pairs: Pair[]; } export default function reducer(state: State, action: Action): State;