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.
14 lines
470 B
14 lines
470 B
import { NativeItemConfig } from './nativeTypesConfig';
|
|
import { DragDropMonitor } from 'dnd-core';
|
|
export declare class NativeDragSource {
|
|
item: any;
|
|
private config;
|
|
constructor(config: NativeItemConfig);
|
|
private initializeExposedProperties;
|
|
loadDataTransfer(dataTransfer: DataTransfer | null | undefined): void;
|
|
canDrag(): boolean;
|
|
beginDrag(): any;
|
|
isDragging(monitor: DragDropMonitor, handle: string): boolean;
|
|
endDrag(): void;
|
|
}
|