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

x/ogone/src/ogone.dom.d.ts>TextEvent

Advanced Web Composition for Future
Latest
interface TextEvent
implements UIEvent
import { type TextEvent } from "https://deno.land/x/ogone@revb3/src/ogone.dom.d.ts";

Properties

readonly
data: string
readonly
DOM_INPUT_METHOD_DROP: number
readonly
DOM_INPUT_METHOD_HANDWRITING: number
readonly
DOM_INPUT_METHOD_IME: number
readonly
DOM_INPUT_METHOD_KEYBOARD: number
readonly
DOM_INPUT_METHOD_MULTIMODAL: number
readonly
DOM_INPUT_METHOD_OPTION: number
readonly
DOM_INPUT_METHOD_PASTE: number
readonly
DOM_INPUT_METHOD_SCRIPT: number
readonly
DOM_INPUT_METHOD_UNKNOWN: number
readonly
DOM_INPUT_METHOD_VOICE: number

Methods

initTextEvent(
typeArg: string,
canBubbleArg: boolean,
cancelableArg: boolean,
viewArg: OgoneWindow,
dataArg: string,
inputMethod: number,
locale: string,
): void