Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Go to Latest
interface Protocol.Input.DragDataItem
import { type Protocol } from "https://deno.land/x/puppeteer@14.1.1/vendor/puppeteer-core/puppeteer/api-docs-entry.d.ts";
const { DragDataItem } = Protocol.Input;

Properties

mimeType: string

Mime type of the dragged data.

data: string

Depending of the value of mimeType, it contains the dragged link, text, HTML markup or any other data.

optional
title: string

Title associated with a link. Only valid when mimeType == "text/uri-list".

optional
baseURL: string

Stores the base URL for the contained markup. Only valid when mimeType == "text/html".