ng2-dnd
Version:
Angular 2 Drag-and-Drop without dependencies
22 lines (21 loc) • 846 B
TypeScript
import { ModuleWithProviders } from "@angular/core";
import { DragDropConfig } from './dnd.config';
import { DragDropService, DragDropSortableService, dragDropServiceFactory, dragDropSortableServiceFactory } from './dnd.service';
export * from './abstract.component';
export * from './dnd.config';
export * from './dnd.service';
export * from './draggable.component';
export * from './droppable.component';
export * from './sortable.component';
export declare let providers: (typeof DragDropConfig | {
provide: typeof DragDropService;
useFactory: typeof dragDropServiceFactory;
deps?: undefined;
} | {
provide: typeof DragDropSortableService;
useFactory: typeof dragDropSortableServiceFactory;
deps: (typeof DragDropConfig)[];
})[];
export declare class DndModule {
static forRoot(): ModuleWithProviders<DndModule>;
}