This commit is contained in:
14
node_modules/dnd-core/lib/reducers/index.d.ts
generated
vendored
Normal file
14
node_modules/dnd-core/lib/reducers/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user