public-api.d.ts 962 B

12345678910111213141516171819202122232425262728
  1. /**
  2. * @license
  3. * Copyright Google LLC All Rights Reserved.
  4. *
  5. * Use of this source code is governed by an MIT-style license that can be
  6. * found in the LICENSE file at https://angular.io/license
  7. */
  8. export { DragDrop } from './drag-drop';
  9. export { DragRef, DragRefConfig } from './drag-ref';
  10. export { DropListRef } from './drop-list-ref';
  11. export * from './drop-list-container';
  12. export * from './drag-events';
  13. export * from './drag-utils';
  14. export * from './drag-drop-module';
  15. export * from './drag-drop-registry';
  16. export { CdkDropList } from './directives/drop-list';
  17. export * from './directives/drop-list-group';
  18. export * from './directives/drag';
  19. export * from './directives/drag-handle';
  20. export * from './directives/drag-preview';
  21. export * from './directives/drag-placeholder';
  22. import { DragRefConfig } from './drag-ref';
  23. /**
  24. * @deprecated Use `DragRefConfig` instead.
  25. * @breaking-change 8.0.0
  26. */
  27. export interface CdkDragConfig extends DragRefConfig {
  28. }