All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
4 lines
379 B
TypeScript
4 lines
379 B
TypeScript
import { DragDropManager, DropTarget, Unsubscribe, Identifier, TargetType, SourceType, DragSource } from 'dnd-core';
|
|
export declare function registerTarget(type: TargetType, target: DropTarget, manager: DragDropManager): [Identifier, Unsubscribe];
|
|
export declare function registerSource(type: SourceType, source: DragSource, manager: DragDropManager): [Identifier, Unsubscribe];
|