UNPKG

@duoduo-oba/ng-devui

Version:

DevUI components based on Angular

12 lines (11 loc) 622 B
import { QueryList } from '@angular/core'; import { DragSyncDirective } from '../directives/drag-sync.directive'; import { DropSortSyncDirective } from '../directives/drop-sort-sync.directive'; export declare class DragDropSyncService { dragSyncList: QueryList<DragSyncDirective>; dropSortSyncList: QueryList<DropSortSyncDirective>; updateDragSyncList(list: QueryList<DragSyncDirective>): void; getDragSyncByGroup(groupName: string): DragSyncDirective[]; updateDropSyncList(list: QueryList<DropSortSyncDirective>): void; getDropSyncByGroup(groupName: string): DropSortSyncDirective[]; }