dnd.js 477 B

1234567891011121314151617181920
  1. import { Mimes } from '../common/mime.js';
  2. // Common data transfers
  3. export const DataTransfers = {
  4. /**
  5. * Application specific resource transfer type
  6. */
  7. RESOURCES: 'ResourceURLs',
  8. /**
  9. * Browser specific transfer type to download
  10. */
  11. DOWNLOAD_URL: 'DownloadURL',
  12. /**
  13. * Browser specific transfer type for files
  14. */
  15. FILES: 'Files',
  16. /**
  17. * Typically transfer type for copy/paste transfers.
  18. */
  19. TEXT: Mimes.text
  20. };