easysql/node_modules/monaco-editor/esm/vs/base/browser/dnd.js
2025-12-29 18:35:04 +08:00

22 lines
555 B
JavaScript

import { Mimes } from '../common/mime.js';
// Common data transfers
const DataTransfers = {
/**
* Application specific resource transfer type
*/
RESOURCES: 'ResourceURLs',
/**
* Typically transfer type for copy/paste transfers.
*/
TEXT: Mimes.text,
/**
* Internal type used to pass around text/uri-list data.
*
* This is needed to work around https://bugs.chromium.org/p/chromium/issues/detail?id=239745.
*/
INTERNAL_URI_LIST: 'application/vnd.code.uri-list',
};
export { DataTransfers };