Skip to main content
Module

x/puppeteer_plus/mod.ts>Protocol.Input.DragDataItem

Deno port of puppeteer base on latest TypeScript source.
Go to Latest
interface Protocol.Input.DragDataItem
import { type Protocol } from "https://deno.land/x/puppeteer_plus@0.14.0/mod.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".