UNPKG

846 BTypeScriptView Raw
1import { ModuleWithProviders } from "@angular/core";
2import { DragDropConfig } from './dnd.config';
3import { DragDropService, DragDropSortableService, dragDropServiceFactory, dragDropSortableServiceFactory } from './dnd.service';
4export * from './abstract.component';
5export * from './dnd.config';
6export * from './dnd.service';
7export * from './draggable.component';
8export * from './droppable.component';
9export * from './sortable.component';
10export declare let providers: (typeof DragDropConfig | {
11 provide: typeof DragDropService;
12 useFactory: typeof dragDropServiceFactory;
13 deps?: undefined;
14} | {
15 provide: typeof DragDropSortableService;
16 useFactory: typeof dragDropSortableServiceFactory;
17 deps: (typeof DragDropConfig)[];
18})[];
19export declare class DndModule {
20 static forRoot(): ModuleWithProviders<DndModule>;
21}