All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
15 lines
615 B
TypeScript
15 lines
615 B
TypeScript
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';
|
|
import { Action } from '../interfaces';
|
|
export interface State {
|
|
dirtyHandlerIds: DirtyHandlerIdsState;
|
|
dragOffset: DragOffsetState;
|
|
refCount: RefCountState;
|
|
dragOperation: DragOperationState;
|
|
stateId: StateIdState;
|
|
}
|
|
export declare function reduce(state: State | undefined, action: Action<any>): State;
|