This commit is contained in:
19
node_modules/dnd-core/lib/reducers/dragOperation.d.ts
generated
vendored
Normal file
19
node_modules/dnd-core/lib/reducers/dragOperation.d.ts
generated
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
import { Identifier, Action } from '../interfaces';
|
||||
export interface State {
|
||||
itemType: Identifier | Identifier[] | null;
|
||||
item: any;
|
||||
sourceId: string | null;
|
||||
targetIds: string[];
|
||||
dropResult: any;
|
||||
didDrop: boolean;
|
||||
isSourcePublic: boolean | null;
|
||||
}
|
||||
export declare function reduce(state: State | undefined, action: Action<{
|
||||
itemType: Identifier | Identifier[];
|
||||
item: any;
|
||||
sourceId: string;
|
||||
targetId: string;
|
||||
targetIds: string[];
|
||||
isSourcePublic: boolean;
|
||||
dropResult: any;
|
||||
}>): State;
|
||||
Reference in New Issue
Block a user