Skip to main content
Module

x/evt/mod.ts>dom.DataTransferItem

💧EventEmitter's typesafe replacement
Go to Latest
interface dom.DataTransferItem
import { type dom } from "https://deno.land/x/evt@v2.4.13/mod.ts";
const { DataTransferItem } = dom;

One drag data item. During a drag operation, each drag event has a dataTransfer property which contains a list of drag data items. Each item in the list is a DataTransferItem object.

Properties

readonly
kind: string

Returns the drag data item kind, one of: "string", "file".

readonly
type: string

Returns the drag data item type string.

Methods

getAsFile(): File | null

Returns a File object, if the drag data item kind is File.

getAsString(callback: FunctionStringCallback | null): void

Invokes the callback with the string data as the argument, if the drag data item kind is text.

webkitGetAsEntry(): any