版博士V2.0程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

DataTransfer.d.ts 283 B

123456789101112
  1. import File from '../file/File';
  2. import DataTransferItemList from './DataTransferItemList';
  3. /**
  4. *
  5. */
  6. export default class DataTransfer {
  7. dropEffect: string;
  8. effectAllowed: string;
  9. files: File[];
  10. readonly items: DataTransferItemList;
  11. readonly types: string[];
  12. }