Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/yxz/typing/lib.dom.ts>CompositionEvent

Deno Standard Extensions
Go to Latest
interface CompositionEvent
implements UIEvent
import { type CompositionEvent } from "https://deno.land/x/yxz@0.17.0/typing/lib.dom.ts";

The DOM CompositionEvent represents events that occur due to the user indirectly entering text.

Properties

readonly
data: string

Methods

deprecated
initCompositionEvent(
typeArg: string,
bubblesArg?: boolean,
cancelableArg?: boolean,
viewArg?: WindowProxy | null,
dataArg?: string,
): void