You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
711 B
20 lines
711 B
import { State as DragOffsetState } from './dragOffset';
|
|
import { State as DragOperationState } from './dragOperation';
|
|
import { State as RefCountState } from './refCount';
|
|
import { State as DirtyHandlerIdsState } from './dirtyHandlerIds';
|
|
import { State as StateIdState } from './stateId';
|
|
export interface State {
|
|
dirtyHandlerIds: DirtyHandlerIdsState;
|
|
dragOffset: DragOffsetState;
|
|
refCount: RefCountState;
|
|
dragOperation: DragOperationState;
|
|
stateId: StateIdState;
|
|
}
|
|
export default function reduce(state: State | undefined, action: any): {
|
|
dirtyHandlerIds: string[];
|
|
dragOffset: DragOffsetState;
|
|
refCount: number;
|
|
dragOperation: DragOperationState;
|
|
stateId: number;
|
|
};
|